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