mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2025-02-21 13:26:21 +00:00
Merge pull request #2390 from jaschaurbach/fix-docker-compose
Quote ports in docker-compose
This commit is contained in:
commit
4484d0baed
1 changed files with 2 additions and 2 deletions
|
@ -5,7 +5,7 @@ services:
|
||||||
image: nginx:latest
|
image: nginx:latest
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
ports:
|
ports:
|
||||||
- 1333:80
|
- "1333:80"
|
||||||
depends_on:
|
depends_on:
|
||||||
- web
|
- web
|
||||||
networks:
|
networks:
|
||||||
|
@ -36,7 +36,7 @@ services:
|
||||||
networks:
|
networks:
|
||||||
- main
|
- main
|
||||||
ports:
|
ports:
|
||||||
- 8000
|
- "8000"
|
||||||
redis_activity:
|
redis_activity:
|
||||||
image: redis
|
image: redis
|
||||||
command: redis-server --requirepass ${REDIS_ACTIVITY_PASSWORD} --appendonly yes --port ${REDIS_ACTIVITY_PORT}
|
command: redis-server --requirepass ${REDIS_ACTIVITY_PASSWORD} --appendonly yes --port ${REDIS_ACTIVITY_PORT}
|
||||||
|
|
Loading…
Reference in a new issue