Skip to content

Commit

Permalink
Merge pull request #823 from hpcc-systems/yadhap/add-cluster-whitelis…
Browse files Browse the repository at this point in the history
…t-volume

Added line in docker-compose to create volume for cluster  whitelist
  • Loading branch information
FancMa01 authored Aug 14, 2024
2 parents aad479f + 67e1b89 commit 28377bd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion Tombolo/docker-compose-with-kafka
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ services:
dockerfile: Dockerfile
volumes:
- /tmp/pm2
- ./server/cluster-whitelist.js:/app/cluster-whitelist.js
networks:
- tombolo-network
ports:
Expand All @@ -44,7 +45,7 @@ services:
- ${DB_PORT}:3306
environment:
MYSQL_DATABASE: ${DB_NAME}
MYSQL_ROOT_USER : ${DB_USERNAME},
MYSQL_ROOT_USER: ${DB_USERNAME},
MYSQL_ROOT_PASSWORD: ${DB_PASSWORD}
MYSQL_HOST: ${DB_HOSTNAME}
networks:
Expand Down
5 changes: 3 additions & 2 deletions Tombolo/docker-compose-without-kafka
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ services:
dockerfile: Dockerfile
volumes:
- /tmp/pm2
- ./server/cluster-whitelist.js:/app/cluster-whitelist.js
networks:
- tombolo-network
ports:
Expand All @@ -44,7 +45,7 @@ services:
- ${DB_PORT}:3306
environment:
MYSQL_DATABASE: ${DB_NAME}
MYSQL_ROOT_USER : ${DB_USERNAME},
MYSQL_ROOT_USER: ${DB_USERNAME},
MYSQL_ROOT_PASSWORD: ${DB_PASSWORD}
MYSQL_HOST: ${DB_HOSTNAME}
networks:
Expand All @@ -54,4 +55,4 @@ services:

networks:
tombolo-network:
driver: bridge
driver: bridge

0 comments on commit 28377bd

Please sign in to comment.