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