Skip to content

Commit

Permalink
Merge pull request #224 from shutter-network/fix/docker-restart
Browse files Browse the repository at this point in the history
added restart for all docker containers
  • Loading branch information
blockchainluffy authored Dec 5, 2024
2 parents ab5fb28 + 22bc3d1 commit fccdf40
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ services:
build:
context: ../observer/
dockerfile: Dockerfile
restart: unless-stopped
restart: always
depends_on:
db:
condition: service_healthy
Expand Down Expand Up @@ -32,7 +32,7 @@ services:

db:
image: postgres:14.12
restart: unless-stopped
restart: always
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: ${OBSERVER_DB_PASSWORD}
Expand All @@ -51,7 +51,7 @@ services:
build:
context: ../backend/
dockerfile: Dockerfile
restart: unless-stopped
restart: always
depends_on:
- observer
logging:
Expand Down

0 comments on commit fccdf40

Please sign in to comment.