30 lines
531 B
YAML
30 lines
531 B
YAML
version: "2.1"
|
|
|
|
services:
|
|
|
|
nextcloud:
|
|
container_name: nextcloud-full
|
|
image: nextcloud:18.0.3
|
|
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
|
|
|
|
networks:
|
|
|
|
reverse-proxy:
|
|
external: true
|
|
|
|
mysqlnet:
|
|
external: true
|
|
|
|
mailnet:
|
|
external: true
|