mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-22 09:31:08 +00:00
Quote ports in docker-compose
Per sepcification in compose-file v3 ports are in quotes. https://docs.docker.com/compose/compose-file/compose-file-v3/
This commit is contained in:
parent
1a8580cdbc
commit
cb187c880e
1 changed files with 2 additions and 2 deletions
|
@ -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}
|
||||
|
|
Loading…
Reference in a new issue