mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2025-02-17 03:25:19 +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
|
||||
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