Don't expose unnecessary ports

This commit is contained in:
Mouse Reeve 2022-02-04 17:37:08 -08:00
parent 70bd6b9a65
commit ea035b9fbe

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: