ninedocker/services/50-nextcloud/dockercompose/dockercompose.yml

22 lines
770 B
YAML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Nextcloud
# Hébergement de fichiers et une plateforme de collaboration
# Port interne 80
nextcloud:
image: reg.cadoles.com/envole/nextcloud
container_name: nine-nextcloud
restart: unless-stopped
healthcheck:
test: curl --fail http://localhost || exit 1
interval: 1s
timeout: 60s
env_file: ./services/50-nextcloud/env/.env.merge
networks:
- nine-network
volumes:
- ./services/50-nextcloud/volume/html:/var/www/html
- ./services/50-nextcloud/volume/app:/var/www/html/custom_apps
- ./services/50-nextcloud/volume/data:/var/www/html/data
- ./services/50-nextcloud/volume/nine:/nine
- ./services/50-nextcloud/volume/prestart:/docker-entrypoint-hooks.d/before-starting