Merge pull request #2390 from jaschaurbach/fix-docker-compose

Quote ports in docker-compose
This commit is contained in:
Mouse Reeve 2022-11-23 17:44:43 -08:00 committed by GitHub
commit 4484d0baed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,7 +5,7 @@ services:
image: nginx:latest
restart: unless-stopped
ports:
- 1333:80
- "1333:80"
depends_on:
- web
networks:
@ -36,7 +36,7 @@ services:
networks:
- main
ports:
- 8000
- "8000"
redis_activity:
image: redis
command: redis-server --requirepass ${REDIS_ACTIVITY_PASSWORD} --appendonly yes --port ${REDIS_ACTIVITY_PORT}