Skip to content

Commit 2a3548f

Browse files
authored
Merge pull request #7 from pior-labs/agent/connect-finance-to-platform-data
Connect Finance to platform PostgreSQL network
2 parents 01c3e17 + 9db8d00 commit 2a3548f

2 files changed

Lines changed: 8 additions & 3 deletions

File tree

.github/workflows/ci-cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
106106
- name: Ensure external Docker networks
107107
run: |
108-
for network in finlens_private pior_edge; do
108+
for network in finlens_private pior_edge pior_data; do
109109
docker network inspect "$network" >/dev/null 2>&1 || docker network create "$network"
110110
done
111111

docker-compose.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ services:
3333
pior_edge:
3434
aliases:
3535
- finance-api
36+
pior_data:
3637

3738
web:
3839
build:
@@ -83,15 +84,19 @@ services:
8384
retries: 3
8485
start_period: 10s
8586
networks:
86-
- default
87-
- finlens_private
87+
default:
88+
finlens_private:
89+
pior_data:
8890

8991
networks:
9092
finlens_private:
9193
external: true
9294
pior_edge:
9395
external: true
9496
name: pior_edge
97+
pior_data:
98+
external: true
99+
name: pior_data
95100

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

0 commit comments

Comments
 (0)