28 lines
728 B
YAML
28 lines
728 B
YAML
version: '3'
|
|
services:
|
|
nextcloud:
|
|
image: nextcloud/all-in-one:latest
|
|
container_name: nextcloud-aio-mastercontainer
|
|
logging:
|
|
driver: loki
|
|
options:
|
|
loki-url: http://localhost:3100/loki/api/v1/push
|
|
loki-batch-size: "50"
|
|
loki-retries: "1"
|
|
loki-timeout: "2s"
|
|
keep-file: "true"
|
|
labels:
|
|
- traefik.http.routers.nextcloud.rule=Host(`nextcloud.jafner.net`)
|
|
- traefik.http.routers.nextcloud.tls.certresolver=lets-encrypt
|
|
networks:
|
|
- web
|
|
volumes:
|
|
- nextcloud_aio_mastercontainer:/mnt/docker-aio-config
|
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
|
|
|
networks:
|
|
web:
|
|
external: true
|
|
|
|
volumes:
|
|
nextcloud_aio_mastercontainer: |