docker-nextcloud-stack/docker-compose.yml

31 lines
559 B
YAML

version: "2.1"
services:
nextcloud:
container_name: nextcloud-full
image: nextcloud:17.0.3
build: ./docker/.examples/dockerfiles/full/apache/
restart: unless-stopped
networks:
- reverse-proxy
- mysqlnet
- mailnet
expose:
- "80/tcp"
volumes:
- /mnt/volumes/nextcloud/data:/var/www/html:Z
- ./supervisord.conf:/supervisord.conf
- ./run_elasticsearch.sh:/run_elasticsearch.sh
networks:
reverse-proxy:
external: true
mysqlnet:
external: true
mailnet:
external: true