Reihenfolge der Container geändert. Nginx wird nun vor nextcloud geladen
This commit is contained in:
parent
2a0953ad69
commit
259a34f4ba
|
@ -25,21 +25,6 @@ services:
|
||||||
image: redis:alpine
|
image: redis:alpine
|
||||||
restart: always
|
restart: always
|
||||||
|
|
||||||
app:
|
|
||||||
image: nextcloud:fpm
|
|
||||||
links:
|
|
||||||
- db
|
|
||||||
environment:
|
|
||||||
- MYSQL_HOST=db
|
|
||||||
- REDIS_HOST=redis
|
|
||||||
volumes:
|
|
||||||
- /opt/appdata/nextcloud/www:/var/www/html
|
|
||||||
container_name: nextcloud-bmen-cc
|
|
||||||
restart: always
|
|
||||||
depends_on:
|
|
||||||
- db
|
|
||||||
- redis
|
|
||||||
|
|
||||||
web:
|
web:
|
||||||
image: nginx
|
image: nginx
|
||||||
ports:
|
ports:
|
||||||
|
@ -56,3 +41,18 @@ services:
|
||||||
depends_on:
|
depends_on:
|
||||||
- app
|
- app
|
||||||
restart: always
|
restart: always
|
||||||
|
|
||||||
|
app:
|
||||||
|
image: nextcloud:fpm
|
||||||
|
links:
|
||||||
|
- db
|
||||||
|
environment:
|
||||||
|
- MYSQL_HOST=db
|
||||||
|
- REDIS_HOST=redis
|
||||||
|
volumes:
|
||||||
|
- /opt/appdata/nextcloud/www:/var/www/html
|
||||||
|
container_name: nextcloud-bmen-cc
|
||||||
|
restart: always
|
||||||
|
depends_on:
|
||||||
|
- db
|
||||||
|
- redis
|
||||||
|
|
Loading…
Reference in New Issue