Skip to content

Commit

Permalink
Update docker-compose.yml fixes naskio#16 invalid boolean valud
Browse files Browse the repository at this point in the history
Fixes:
ERROR: The Compose file './docker-compose.yaml' is invalid because:
services.strapi-v4.environment.DATABASE_SSL contains false, which is an invalid type, it should be a string, number, or a null
  • Loading branch information
AndreasScharfCPB authored Jun 28, 2023
1 parent 6431f5d commit c965e8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/strapi-postgres/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ services:
DATABASE_NAME: postgres
DATABASE_USERNAME: postgres
DATABASE_PASSWORD: postgres
DATABASE_SSL: false # boolean for SSL.
DATABASE_SSL: 'false' # boolean for SSL.
volumes:
- app:/srv/app # create a new project in app volume
postgres:
Expand All @@ -32,4 +32,4 @@ services:

volumes:
data:
app:
app:

0 comments on commit c965e8b

Please sign in to comment.