Merge pull request #1918 from bookwyrm-social/ports

Don't expose unnecessary ports
This commit is contained in:
Mouse Reeve 2022-02-04 18:12:05 -08:00 committed by GitHub
commit 0601f68685
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -35,7 +35,7 @@ services:
networks:
- main
ports:
- 8000:8000
- 8000
redis_activity:
image: redis
command: redis-server --requirepass ${REDIS_ACTIVITY_PASSWORD} --appendonly yes --port ${REDIS_ACTIVITY_PORT}
@ -51,7 +51,7 @@ services:
command: redis-server --requirepass ${REDIS_BROKER_PASSWORD} --appendonly yes --port ${REDIS_BROKER_PORT}
env_file: .env
ports:
- 6379:6379
- 6379
networks:
- main
restart: on-failure
@ -74,10 +74,10 @@ services:
restart: on-failure
flower:
build: .
command: celery -A celerywyrm flower
command: celery -A celerywyrm flower --basic_auth=${FLOWER_USER}:${FLOWER_PASSWORD}
env_file: .env
ports:
- ${FLOWER_PORT}:${FLOWER_PORT}
- ${FLOWER_PORT}
volumes:
- .:/app
networks: