Skip to content
Merged
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
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ services:
# case.
db:
image: postgres:13-alpine
restart: on-failure
restart: unless-stopped
volumes:
- db:/var/lib/postgresql/data/

Expand All @@ -39,7 +39,7 @@ services:
args:
- BUILD_TYPE=release
depends_on: [db]
restart: on-failure
restart: unless-stopped

# All dirtsand services need this incantation so that the console doesn't hang the container.
stdin_open: true
Expand Down
Loading