-
Notifications
You must be signed in to change notification settings - Fork 239
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
final updates and fixes to env vars and docker compose local development
- Loading branch information
Juan Valacco
committed
May 18, 2024
1 parent
3d42912
commit b539eff
Showing
14 changed files
with
38 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
#!/bin/bash | ||
|
||
# Create Docker network | ||
docker network create dataherald_network | ||
|
||
docker-compose -p dataherald -f services/engine/docker-compose.yml up --build -d; | ||
docker-compose -p dataherald -f services/enterprise/docker-compose.yml up --build -d; | ||
docker-compose -p dataherald -f services/slackbot/docker-compose.yml up --build -d; | ||
docker-compose -p dataherald -f services/admin-console/docker-compose.yml up --build -d; | ||
# Bring up services with Docker Compose | ||
docker-compose -p dataherald -f services/engine/docker-compose.yml up --build -d | ||
docker-compose -p dataherald -f services/enterprise/docker-compose.yml up --build -d | ||
docker-compose -p dataherald -f services/slackbot/docker-compose.yml up --build -d | ||
docker-compose -p dataherald -f services/admin-console/docker-compose.yml up --build -d |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
services: | ||
api: | ||
container_name: api | ||
build: | ||
context: . | ||
dockerfile: Dockerfile | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
services: | ||
slackbot: | ||
build: . | ||
working_dir: /app | ||
ports: | ||
- "3005:3005" | ||
volumes: | ||
- .:/app | ||
- /app/node_modules | ||
networks: | ||
- dataherald_network | ||
slackbot: | ||
container_name: slackbot | ||
build: . | ||
working_dir: /app | ||
ports: | ||
- '3005:3005' | ||
volumes: | ||
- .:/app | ||
- /app/node_modules | ||
networks: | ||
- dataherald_network | ||
networks: | ||
dataherald_network: | ||
external: true | ||
|
||
dataherald_network: | ||
external: true |