22 lines
676 B
YAML
22 lines
676 B
YAML
# documentation: https://docs.nextcloud.com
|
|
# slogan: NextCloud is a self-hosted, open-source platform that provides file storage, collaboration, and communication tools for seamless data management.
|
|
# tags: cloud, collaboration, communication, filestorage, data
|
|
# logo: svgs/nextcloud.svg
|
|
|
|
services:
|
|
nextcloud:
|
|
image: lscr.io/linuxserver/nextcloud:latest
|
|
environment:
|
|
- SERVICE_FQDN_NEXTCLOUD
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Europe/Madrid
|
|
volumes:
|
|
- nextcloud-config:/config
|
|
- nextcloud-data:/data
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://127.0.0.1:80"]
|
|
interval: 2s
|
|
timeout: 10s
|
|
retries: 15
|