Initial commit.

This commit is contained in:
yohan 2019-07-12 00:19:13 +02:00
commit ea7cb5b70c
2 changed files with 66 additions and 0 deletions

33
docker-compose.yml Normal file
View File

@ -0,0 +1,33 @@
version: "2.1"
services:
nextcloud:
container_name: nextcloud-full
image: nextcloud:15.0.8
build: ./docker/.examples/dockerfiles/full/apache/
restart: always
networks:
- reverse-proxy
- mysqlnet
- mailnet
expose:
- "80/tcp"
volumes:
- nextcloud:/var/www/html:Z
networks:
reverse-proxy:
external: true
mysqlnet:
external: true
mailnet:
external: true
volumes:
nextcloud:
external: true

33
docker-compose.yml-last Normal file
View File

@ -0,0 +1,33 @@
version: "2.1"
services:
nextcloud:
container_name: nextcloud-full
image: nextcloud-full
build: https://github.com/nextcloud/docker.git#:.examples/dockerfiles/full/apache/
restart: always
networks:
- reverse-proxy
- mysqlnet
- mailnet
expose:
- "80/tcp"
volumes:
- nextcloud:/var/www/html:Z
networks:
reverse-proxy:
external: true
mysqlnet:
external: true
mailnet:
external: true
volumes:
nextcloud:
external: true