Skip to content

Commit

Permalink
Remove restart always
Browse files Browse the repository at this point in the history
  • Loading branch information
mrvanes committed Aug 29, 2024
1 parent 40557fa commit 3d381fd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ services:
client:
build: "client"
container_name: "sbs-client"
restart: "always"
restart: "no"
links:
- "server"
ports:
Expand All @@ -22,7 +22,7 @@ services:
server:
build: "server"
container_name: "sbs-server"
restart: "always"
restart: "no"
links:
- "db"
- "redis"
Expand Down Expand Up @@ -51,7 +51,7 @@ services:
db:
image: "docker.io/mariadb:11"
container_name: "sbs-db"
restart: "always"
restart: "no"
environment:
MARIADB_ROOT_PASSWORD: "${DB_ROOT_PASSWORD:-sbs}"
MARIADB_DATABASE: "sbs"
Expand Down

0 comments on commit 3d381fd

Please sign in to comment.