Skip to content

Commit

Permalink
Merge pull request #61 from rafsaf/docker-compose-restart
Browse files Browse the repository at this point in the history
Set explicite restart: no in compose
  • Loading branch information
rafsaf authored Jul 9, 2023
2 parents 9535c27 + 6d22a69 commit bcdef51
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

services:
postgres_15:
restart: "no"
image: postgres:15.1
environment:
- POSTGRES_PASSWORD=password-_-12!@#$%^&*()/;><.,]}{[
Expand All @@ -17,6 +18,7 @@ services:
- 10015:5432

postgres_14:
restart: "no"
image: postgres:14.6
environment:
- POSTGRES_PASSWORD=password-_-12!@#$%^&*()/;><.,]}{[
Expand All @@ -26,6 +28,7 @@ services:
- 10014:5432

postgres_13:
restart: "no"
image: postgres:13.8
environment:
- POSTGRES_PASSWORD=password-_-12!@#$%^&*()/;><.,]}{[
Expand All @@ -35,6 +38,7 @@ services:
- 10013:5432

postgres_12:
restart: "no"
image: postgres:12.12
environment:
- POSTGRES_PASSWORD=password-_-12!@#$%^&*()/;><.,]}{[
Expand All @@ -44,6 +48,7 @@ services:
- 10012:5432

postgres_11:
restart: "no"
image: postgres:11.16
environment:
- POSTGRES_PASSWORD=password-_-12!@#$%^&*()/;><.,]}{[
Expand All @@ -53,6 +58,7 @@ services:
- 10011:5432

mysql_57:
restart: "no"
image: mysql:5.7.42
environment:
- MYSQL_ROOT_PASSWORD=root-password-_-12!@#$%^&*()/;><.,]}{[
Expand All @@ -63,6 +69,7 @@ services:
- 10057:3306

mysql_80:
restart: "no"
image: mysql:8.0.33
environment:
- MYSQL_ROOT_PASSWORD=root-password-_-12!@#$%^&*()/;><.,]}{[
Expand All @@ -73,7 +80,7 @@ services:
- 10080:3306

mariadb_1011:
restart: "unless-stopped"
restart: "no"
image: mariadb:10.11.2
environment:
- MARIADB_ROOT_PASSWORD=root-password-_-12!@#$%^&*()/;><.,]}{[
Expand All @@ -84,7 +91,7 @@ services:
- 11011:3306

mariadb_1006:
restart: "unless-stopped"
restart: "no"
image: mariadb:10.6.12
environment:
- MARIADB_ROOT_PASSWORD=root-password-_-12!@#$%^&*()/;><.,]}{[
Expand All @@ -95,7 +102,7 @@ services:
- 11006:3306

mariadb_1005:
restart: "unless-stopped"
restart: "no"
image: mariadb:10.5.19
environment:
- MARIADB_ROOT_PASSWORD=root-password-_-12!@#$%^&*()/;><.,]}{[
Expand All @@ -106,7 +113,7 @@ services:
- 11005:3306

mariadb_1004:
restart: "unless-stopped"
restart: "no"
image: mariadb:10.4.28
environment:
- MARIADB_ROOT_PASSWORD=root-password-_-12!@#$%^&*()/;><.,]}{[
Expand All @@ -117,6 +124,7 @@ services:
- 11004:3306

backuper_tests_amd64:
restart: "no"
platform: linux/amd64
depends_on:
- postgres_15
Expand All @@ -139,6 +147,7 @@ services:
- ZIP_ARCHIVE_PASSWORD=password

backuper_tests_arm64:
restart: "no"
platform: linux/arm64
depends_on:
- postgres_15
Expand Down

0 comments on commit bcdef51

Please sign in to comment.