Skip to content

Commit

Permalink
Ports removal from compose setup (#4)
Browse files Browse the repository at this point in the history
* disabled ports

* cleaning

---------

Co-authored-by: Pierre-Edouard Barrault <pebarrault@tuta.io>
  • Loading branch information
pierrz and Pierre-Edouard Barrault authored Nov 14, 2024
1 parent d269423 commit 62cca12
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 12 deletions.
4 changes: 0 additions & 4 deletions docker-compose.monitoring.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ services:
environment:
CELERY_BROKER_URL: "${CELERY_BROKER_URL}"
CELERY_RESULT_BACKEND: "${CELERY_RESULT_BACKEND}"
ports:
- "49555:5555"
depends_on:
- celery
networks:
Expand All @@ -30,8 +28,6 @@ services:
- ./setup/pgadmin/servers.json:/pgadmin4/servers.json
depends_on:
- db
ports:
- "5050:80"
networks:
brif-network:
ipv4_address: 172.20.0.112
9 changes: 1 addition & 8 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,6 @@ services:
command: uvicorn main:app --host 0.0.0.0 --reload
depends_on:
- api_test
ports:
- "${APP_PORT}:${APP_PORT}"
networks:
brif-network:
ipv4_address: 172.20.0.102
Expand All @@ -84,11 +82,9 @@ services:
restart: always
volumes:
- ${LOGS_DIR}/cantaloupe:/cantaloupe/logs
# CHANGE WITH CAUTION the next mount as it is tied to cantaloupe/properties
# CHANGE WITH CAUTION the mount below as it is tied to cantaloupe/properties
# via FilesystemSource.BasicLookupStrategy.path_prefix
- ${CONTENT_DIR}:/mnt/directories
ports:
- "${CANTALOUPE_PORT}"
networks:
brif-network:
ipv4_address: 172.20.0.103
Expand All @@ -114,9 +110,6 @@ services:
container_name: brif_rabbitmq
image: rabbitmq:3.8-management
restart: on-failure
ports:
- "5672:5672"
- "15672:15672"
volumes:
- ${LOGS_DIR}/rabbitmq:/var/log/rabbitmq
- brif_vrabbitmq:/var/lib/rabbitmq
Expand Down

0 comments on commit 62cca12

Please sign in to comment.