Remove restart always
This commit is contained in:
parent
3f44fbe5b0
commit
9097f0bbd9
|
@ -2,7 +2,6 @@ version: '3'
|
|||
services:
|
||||
webservice:
|
||||
image: zoomyboy/adrema-webservice:latest
|
||||
restart: always
|
||||
depends_on:
|
||||
- php
|
||||
ports:
|
||||
|
@ -12,7 +11,6 @@ services:
|
|||
|
||||
php:
|
||||
image: zoomyboy/adrema-app:latest
|
||||
restart: always
|
||||
depends_on:
|
||||
- db
|
||||
- redis
|
||||
|
@ -38,7 +36,6 @@ services:
|
|||
|
||||
horizon:
|
||||
image: zoomyboy/adrema-app:latest
|
||||
restart: always
|
||||
depends_on:
|
||||
- php
|
||||
command: /bin/entrypoint horizon
|
||||
|
@ -62,7 +59,6 @@ services:
|
|||
|
||||
schedule:
|
||||
image: zoomyboy/adrema-app:latest
|
||||
restart: always
|
||||
depends_on:
|
||||
- php
|
||||
command: /bin/entrypoint schedule
|
||||
|
@ -86,7 +82,6 @@ services:
|
|||
|
||||
db:
|
||||
image: mariadb:10.6.5
|
||||
restart: always
|
||||
env_file:
|
||||
- .app.env
|
||||
environment:
|
||||
|
@ -98,7 +93,6 @@ services:
|
|||
|
||||
socketi:
|
||||
image: quay.io/soketi/soketi:89604f268623cf799573178a7ba56b7491416bde-16-debian
|
||||
restart: always
|
||||
environment:
|
||||
SOKETI_DEFAULT_APP_ID: adremaid
|
||||
SOKETI_DEFAULT_APP_KEY: adremakey
|
||||
|
@ -106,7 +100,6 @@ services:
|
|||
|
||||
redis:
|
||||
image: redis:alpine3.18
|
||||
restart: always
|
||||
volumes:
|
||||
- ./data/redis:/data
|
||||
|
||||
|
|
Loading…
Reference in New Issue