Docker-Compose: 2 Questions

Hi everyone,

I have successfully setup my first NExtcloud using Docker-Compose. I used the Files from the examples here:

So far so good. Now two questions:

  1. where to put in the data-Directory (I want to have that on my NAS System)
    I created a NFS share and linked that however the data is still in the Nexcloud docker directory.
    I want to have it under /mnt/nextcloud

  2. Before I installed docker I had a Nextcloud running on a PC. There I installed this app:
    How-To Install / use
    Is it possible to also bring that in the docker-compose environment.

Here’s my file


Version: ‘2’
services:
db:
image: mariadb
command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW
restart: always
volumes:
- db:/var/lib/mysql
environment:
- MYSQL_ROOT_PASSWORD=******
env_file:
- db.env

app:
image: nextcloud:fpm
restart: always
volumes:
- nextcloud:/var/www/html
- /mnt/nextcloud:/data
environment:
- MYSQL_HOST=db
env_file:
- db.env
depends_on:
- db

web:
build: ./web
restart: always
volumes:
- nextcloud:/var/www/html:ro
environment:
- VIRTUAL_HOST=******
- LETSENCRYPT_HOST=*****
- LETSENCRYPT_EMAIL=****
depends_on:
- app
networks:
- proxy-tier
- default

proxy:
build: ./proxy
restart: always
ports:
- 80:80
- 443:443
labels:
com.github.jrcs.letsencrypt_nginx_proxy_companion.nginx_proxy: “true”
volumes:
- certs:/etc/nginx/certs:ro
- vhost.d:/etc/nginx/vhost.d
- html:/usr/share/nginx/html
- /var/run/docker.sock:/tmp/docker.sock:ro
networks:
- proxy-tier

letsencrypt-companion:
image: jrcs/letsencrypt-nginx-proxy-companion
restart: always
volumes:
- certs:/etc/nginx/certs
- vhost.d:/etc/nginx/vhost.d
- html:/usr/share/nginx/html
- /var/run/docker.sock:/var/run/docker.sock:ro
networks:
- proxy-tier
depends_on:
- proxy

volumes:
db:
nextcloud:
certs:
vhost.d:
html:

networks:
proxy-tier:
default: