Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ jobs:

- name: Ensure external Docker networks
run: |
for network in finlens_private pior_edge; do
for network in finlens_private pior_edge pior_data; do
docker network inspect "$network" >/dev/null 2>&1 || docker network create "$network"
done

Expand Down
9 changes: 7 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ services:
pior_edge:
aliases:
- finance-api
pior_data:

web:
build:
Expand Down Expand Up @@ -83,15 +84,19 @@ services:
retries: 3
start_period: 10s
networks:
- default
- finlens_private
default:
finlens_private:
pior_data:

networks:
finlens_private:
external: true
pior_edge:
external: true
name: pior_edge
pior_data:
external: true
name: pior_data

# Provides the GitHub Packages token to the web image build so it can pull
# @pior-labs/design-system. Reads the value from the NODE_AUTH_TOKEN env var.
Expand Down
Loading