Skip to content

Commit ee668de

Browse files
committed
fix compose errors
1 parent 9ba76a4 commit ee668de

File tree

21 files changed

+27
-7
lines changed

21 files changed

+27
-7
lines changed

samples/bullmq-bullboard-redis/compose.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
services:
22
board:
3+
restart: unless-stopped
34
build:
45
context: ./board
56
dockerfile: Dockerfile
@@ -15,6 +16,7 @@ services:
1516
- redis
1617

1718
api:
19+
restart: unless-stopped
1820
build:
1921
context: ./api
2022
dockerfile: Dockerfile
@@ -29,6 +31,7 @@ services:
2931
- redis
3032

3133
worker:
34+
restart: unless-stopped
3235
deploy:
3336
replicas: 2
3437
build:

samples/django-postgres/compose.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
services:
22
db:
3+
restart: unless-stopped
34
image: postgres:14
45
volumes: ["./tmp/postgres:/var/lib/postgresql/data/"]
56
environment:
@@ -18,9 +19,9 @@ services:
1819
interval: 1m30s
1920
timeout: 30s
2021
retries: 5
21-
start_period: 30s
2222
django-crm:
23-
build: .
23+
restart: unless-stopped
24+
build: ./app
2425
ports:
2526
- mode: ingress
2627
target: 8000

samples/django/compose.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
services:
22
django:
3+
restart: unless-stopped
34
build:
45
context: ./app
56
dockerfile: Dockerfile

samples/fastapi-postgres/compose.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
services:
22
fastapi:
3+
restart: unless-stopped
34
build:
45
context: ./fastapi
56
dockerfile: Dockerfile

samples/golang-slackbot/compose.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
services:
22
bot:
3+
restart: unless-stopped
34
build:
45
context: ./app
56
dockerfile: Dockerfile

samples/hasura/compose.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
services:
22
hasura:
3+
restart: unless-stopped
34
build:
45
dockerfile: Dockerfile
56
context: ./hasura

samples/huginn/compose.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ services:
1616
interval: 1m30s
1717
timeout: 30s
1818
retries: 10
19-
start_period: 30s
2019
environment:
2120
- DATABASE_ADAPTER=postgresql
2221
- DATABASE_NAME

samples/metabase/compose.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
services:
22
metabase:
3+
restart: unless-stopped
34
image: "metabase/metabase:latest"
45
ports:
56
- mode: ingress

samples/nextjs-blog/compose.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
services:
22
blogstarter:
3+
restart: unless-stopped
34
build:
45
context: ./app
56
dockerfile: Dockerfile

samples/nextjs-boilerplate/compose.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
services:
22
app:
3+
restart: unless-stopped
34
build:
45
context: ./app
56
dockerfile: Dockerfile

0 commit comments

Comments
 (0)