Skip to content

Commit

Permalink
api - repair archive db connection
Browse files Browse the repository at this point in the history
  • Loading branch information
cherusk committed Nov 15, 2023
1 parent 9b05979 commit 44968ca
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ services:
- 'AIRFLOW_CONN_LINUX_NETWORK_STACK_BREEDER_SSH={ "conn_type": "ssh", "login": "godon_robot", "host": "10.0.5.53", "port": 22, "extra": { "key_file": "/opt/airflow/credentials/id_rsa" } }'
- ARCHIVE_DB_USER=yugabyte
- ARCHIVE_DB_PASSWORD=yugabyte
- ARCHIVE_DB_HOST=archive_db
- ARCHIVE_DB_HOST=archive-db
- ARCHIVE_DB_PORT=5433
- ARCHIVE_DB_DATABASE=archive-db
- ARCHIVE_DB_DATABASE=archive_db
- META_DB_USER=meta_data
- META_DB_PASSWORD=meta_data
- META_DB_HOSTNAME=meta_data_db
Expand Down Expand Up @@ -158,9 +158,9 @@ services:
- 9090:9090
archive_db:
image: yugabytedb/yugabyte:2.18.1.0-b84
container_name: "${DB_CONTAINER_NAME:-yugabytedb}"
hostname: archive-db
environment:
- "YSQL_DB=archive-db"
- "YSQL_DB=archive_db"
ports:
- ${DB_YSQL_PORT:-5433}:5433
- ${DB_YCQL_PORT:-9042}:9042
Expand Down

0 comments on commit 44968ca

Please sign in to comment.