Filebrowser hinzugefügt und Unifi angepasst

This commit is contained in:
borgal
2022-05-03 14:57:36 +00:00
parent 700d935a63
commit 85e2bc24f7
2 changed files with 22 additions and 5 deletions

View File

@@ -0,0 +1,15 @@
version: "3.7"
services:
filebrowser:
container_name: filebrowser
image: filebrowser/filebrowser:latest
restart: unless-stopped
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Berlin
ports:
- 8012:80
volumes:
- ./daten:/srv
- ./database/database.db:/database.db

View File

@@ -3,14 +3,16 @@ services:
unifi-controller: unifi-controller:
image: ghcr.io/linuxserver/unifi-controller image: ghcr.io/linuxserver/unifi-controller
container_name: unifi-controller container_name: unifi-controller
volumes: environment:
- /opt/unifi/config:/config - TZ=Europe/Berlin
- PUID=0
- PGID=0
- MEM_LIMIT=1024M
ports: ports:
- 3478:3478/udp - 3478:3478/udp
- 10001:10001/udp - 10001:10001/udp
# - 1900:1900/udp
- 8080:8080 - 8080:8080
- 8443:8443 - 8443:8443
environment: volumes:
- TZ=Europe/Berlin - /opt/unifi/config:/config
restart: unless-stopped restart: unless-stopped