summaryrefslogtreecommitdiffstats
path: root/.examples/docker-compose/insecure/postgres/fpm/docker-compose.yml
diff options
context:
space:
mode:
Diffstat (limited to '.examples/docker-compose/insecure/postgres/fpm/docker-compose.yml')
-rw-r--r--.examples/docker-compose/insecure/postgres/fpm/docker-compose.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.examples/docker-compose/insecure/postgres/fpm/docker-compose.yml b/.examples/docker-compose/insecure/postgres/fpm/docker-compose.yml
index 85fecdf1..97343ad9 100644
--- a/.examples/docker-compose/insecure/postgres/fpm/docker-compose.yml
+++ b/.examples/docker-compose/insecure/postgres/fpm/docker-compose.yml
@@ -5,7 +5,7 @@ services:
image: postgres:alpine
restart: always
volumes:
- - db:/var/lib/postgresql/data
+ - db:/var/lib/postgresql/data:z
env_file:
- db.env
@@ -17,7 +17,7 @@ services:
image: nextcloud:fpm-alpine
restart: always
volumes:
- - nextcloud:/var/www/html
+ - nextcloud:/var/www/html:z
environment:
- POSTGRES_HOST=db
- REDIS_HOST=redis
@@ -33,7 +33,7 @@ services:
ports:
- 127.0.0.1:8080:80
volumes:
- - nextcloud:/var/www/html:ro
+ - nextcloud:/var/www/html:z,ro
depends_on:
- app
@@ -41,7 +41,7 @@ services:
image: nextcloud:fpm-alpine
restart: always
volumes:
- - nextcloud:/var/www/html
+ - nextcloud:/var/www/html:z
entrypoint: /cron.sh
depends_on:
- db