docker-nextcloud-stack/docker-compose.yml

30 lines
531 B
YAML
Raw Permalink Normal View History

2019-07-11 22:19:13 +00:00
version: "2.1"
services:
nextcloud:
container_name: nextcloud-full
image: nextcloud:18.0.3
2019-07-11 22:19:13 +00:00
build: ./docker/.examples/dockerfiles/full/apache/
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
2019-07-11 22:19:13 +00:00
networks:
reverse-proxy:
external: true
mysqlnet:
external: true
mailnet:
external: true