Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix erroneous boolean in compose.yml #84

Merged
merged 1 commit into from
Aug 4, 2024
Merged

Commits on Aug 4, 2024

  1. Fix erroneous boolean in compose.yml

    The word `On` is a boolean in YAML, so we need to use `"On"` instead
    because Docker Compose's environment feature expects a string value.
    
    ```
    $ make up
    Starting up containers for my_wordpress_project...
    docker-compose pull
    ERROR: The Compose file './compose.yml' is invalid because:
    services.php.environment.PHP_MAIL_MIXED_LF_AND_CRLF contains true, which is an invalid type, it should be a string, number, or a null
    make: *** [docker.mk:16: up] Error 1
    ```
    caboteria committed Aug 4, 2024
    Configuration menu
    Copy the full SHA
    46e232a View commit details
    Browse the repository at this point in the history