docker-nextcloud-stack/docker-compose.yml

36 lines
599 B
YAML
Raw Normal View History

2019-07-11 22:19:13 +00:00
version: "2.1"
services:
nextcloud:
container_name: nextcloud-full
2019-12-03 18:23:41 +00:00
image: nextcloud:16.0.6
2019-07-11 22:19:13 +00:00
build: ./docker/.examples/dockerfiles/full/apache/
restart: unless-stopped
2019-07-11 22:19:13 +00:00
networks:
- reverse-proxy
- mysqlnet
- mailnet
expose:
- "80/tcp"
volumes:
- nextcloud:/var/www/html:Z
- ./supervisord.conf:/etc/supervisor/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
volumes:
nextcloud:
external: true