Skip to content

Commit

Permalink
[#224] Rename docker-compose file to support Cardano stack only
Browse files Browse the repository at this point in the history
In preparation for a more modular and environment-specific
docker-compose setup, the existing docker-compose configuration has been
renamed to `docker-compose.node+dbsync.yml`. This change marks a
pre-step towards introducing separate docker-compose files for each
environment, aiming to streamline development processes and improve
clarity.
  • Loading branch information
placek committed Feb 21, 2024
1 parent 08e2636 commit bed30bc
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
# * ./dev-postgres_user
#
# USAGE:
# docker compose --file docker-compose.dev.yml up --detach
# docker compose --file docker-compose.dev.yml down --remove-orphans
# docker compose --file docker-compose.dev.yml logs --follow --timestamps cardano-node
# docker compose --file docker-compose.dev.yml logs --follow --timestamps cardano-db-sync
# docker compose --file docker-compose.node+dbsync.yml up --detach
# docker compose --file docker-compose.node+dbsync.yml down --remove-orphans
# docker compose --file docker-compose.node+dbsync.yml logs --follow --timestamps cardano-node
# docker compose --file docker-compose.node+dbsync.yml logs --follow --timestamps cardano-db-sync
# docker-compose run postgres psql

version: "3.9"
Expand Down Expand Up @@ -56,9 +56,9 @@ services:
restart: on-failure
healthcheck:
test: ["CMD-SHELL", "curl -f 127.0.0.1:12788 || exit 1"]
interval: 60s
interval: 10s
timeout: 10s
retries: 5
retries: 10

cardano-db-sync:
image: ghcr.io/intersectmbo/cardano-db-sync:sancho-4-0-0-fix-config
Expand Down

0 comments on commit bed30bc

Please sign in to comment.