nextcloud-deployment/docker-compose.yml

34 lines
623 B
YAML
Raw Normal View History

2024-07-03 14:11:49 +02:00
services:
nextcloud:
container_name: nextcloud
2024-08-25 09:38:18 +02:00
image: linuxserver/nextcloud:29.0.5
2024-07-03 14:11:49 +02:00
restart: unless-stopped
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Berlin
env_file:
- db.env
volumes:
- ./config:/config
- ./data:/data
depends_on:
- db
networks:
2024-07-16 11:08:02 +02:00
- nginx_proxy
2024-07-03 14:11:49 +02:00
- nextcloud
db:
container_name: maria_db
image: mariadb:10.11
restart: unless-stopped
env_file:
- db.env
volumes:
- ./mariadb:/var/lib/mysql
networks:
- nextcloud
networks:
2024-07-30 08:31:24 +02:00
nextcloud: null
2024-07-16 11:08:02 +02:00
nginx_proxy:
2024-07-03 14:11:49 +02:00
external: true