1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-24 05:17:06 +02:00
dockerfiles/nextcloud/docker-compose.yml

20 lines
404 B
YAML
Raw Normal View History

2016-07-10 20:03:02 +08:00
nextcloud:
2016-11-03 10:30:36 +08:00
image: indiehosters/nextcloud
2016-07-10 20:03:02 +08:00
ports:
2016-11-03 10:30:36 +08:00
- "127.0.0.1:9000:9000"
2016-07-10 20:03:02 +08:00
volumes:
2016-11-03 10:30:36 +08:00
- ./data/apps:/var/www/html/apps
- ./data/config:/var/www/html/config
- ./data/data:/var/www/html/data
restart: always
nginx:
image: nginx:alpine
volumes:
- ./nginx.conf:/etc/nginx/conf.d/default.conf
2016-11-05 10:43:27 +08:00
- ./ssl:/etc/nginx/ssl
2016-11-03 10:30:36 +08:00
volumes_from:
- nextcloud
net: host
2016-07-10 20:03:02 +08:00
restart: always