first commit
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Sthope 2022-05-01 18:55:06 +02:00
parent 5166e3c7e0
commit 399e7ff59b
17 changed files with 29 additions and 18 deletions

View File

@ -7,7 +7,7 @@ services:
image: bitwardenrs/server:${tag-latest} image: bitwardenrs/server:${tag-latest}
restart: ${RST-unless-stopped} restart: ${RST-unless-stopped}
container_name: bitwarden container_name: bitwarden
network_mode: ${net-bridge} network_mode: ${NET-bridge}
volumes: volumes:
- /docker/bitwarden:/data - /docker/bitwarden:/data
- /etc/timezone:/etc/timezone:ro - /etc/timezone:/etc/timezone:ro

View File

@ -6,7 +6,7 @@ services:
librespeed: librespeed:
image: lscr.io/linuxserver/librespeed:${tag-latest} image: lscr.io/linuxserver/librespeed:${tag-latest}
container_name: librespeed container_name: librespeed
network_mode: ${net-bridge} network_mode: ${NET-bridge}
environment: environment:
- PUID=${PUID-1000} - PUID=${PUID-1000}
- PGID=${PGID-1000} - PGID=${PGID-1000}

View File

@ -8,7 +8,7 @@ services:
hostname: mqtt hostname: mqtt
image: eclipse-mosquitto:${tag-latest} image: eclipse-mosquitto:${tag-latest}
restart: ${RST-unless-stopped} restart: ${RST-unless-stopped}
network_mode: ${net-bridge} network_mode: ${NET-bridge}
user: "1000:1000" user: "1000:1000"
environment: environment:
- TZ=${TZ-Europe/Amsterdam} - TZ=${TZ-Europe/Amsterdam}

View File

@ -12,7 +12,7 @@ services:
- TZ=${TZ-Europe/Amsterdam} - TZ=${TZ-Europe/Amsterdam}
- NEXTCLOUD_UPDATE=1 - NEXTCLOUD_UPDATE=1
- DOCKER_MODS=linuxserver/mods:nextcloud-mediadc - DOCKER_MODS=linuxserver/mods:nextcloud-mediadc
network_mode: ${net-bridge} network_mode: ${NET-bridge}
volumes: volumes:
- /docker/nextcloud/config:/config - /docker/nextcloud/config:/config
- /docker/nextcloud/data:/data - /docker/nextcloud/data:/data
@ -25,7 +25,7 @@ services:
nextcloud_db: nextcloud_db:
image: lscr.io/linuxserver/mariadb:${tag-latest} image: lscr.io/linuxserver/mariadb:${tag-latest}
container_name: nextcloud_db container_name: nextcloud_db
network_mode: ${net-bridge} network_mode: ${NET-bridge}
environment: environment:
- PUID=${PUID-1000} - PUID=${PUID-1000}
- PGID=${PGID-1000} - PGID=${PGID-1000}

View File

@ -6,7 +6,7 @@ services:
swag: swag:
image: lscr.io/linuxserver/swag:${tag-latest} image: lscr.io/linuxserver/swag:${tag-latest}
container_name: swag container_name: swag
network_mode: ${net-bridge} network_mode: ${NET-bridge}
cap_add: cap_add:
- NET_ADMIN - NET_ADMIN
environment: environment:
@ -34,7 +34,7 @@ services:
dockerproxy: dockerproxy:
image: ghcr.io/tecnativa/docker-socket-proxy:${tag-latest} image: ghcr.io/tecnativa/docker-socket-proxy:${tag-latest}
container_name: dockerproxy container_name: dockerproxy
network_mode: ${net-bridge} network_mode: ${NET-bridge}
volumes: volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro - /var/run/docker.sock:/var/run/docker.sock:ro
restart: ${RST-unless-stopped} restart: ${RST-unless-stopped}

View File

@ -6,7 +6,7 @@ services:
tasmobackup: tasmobackup:
image: danmed/tasmobackupv1 image: danmed/tasmobackupv1
container_name: tasmobackup container_name: tasmobackup
network_mode: ${net-bridge} network_mode: ${NET-bridge}
environment: environment:
- DBTYPE=sqlite - DBTYPE=sqlite
- DBNAME=data/tasmobackup - DBNAME=data/tasmobackup

View File

@ -6,7 +6,7 @@ services:
authelia: authelia:
image: authelia/authelia:${tag-latest} image: authelia/authelia:${tag-latest}
container_name: authelia container_name: authelia
network_mode: ${net-bridge} network_mode: ${NET-bridge}
environment: environment:
- TZ=${TZ-Europe/Amsterdam} - TZ=${TZ-Europe/Amsterdam}
volumes: volumes:

View File

@ -5,7 +5,7 @@ services:
bazarr: bazarr:
image: linuxserver/bazarr:${tag-latest} image: linuxserver/bazarr:${tag-latest}
container_name: bazarr container_name: bazarr
network_mode: ${net-bridge} network_mode: ${NET-bridge}
environment: environment:
- PUID=${PUID-1000} - PUID=${PUID-1000}
- PGID=${PGID-1000} - PGID=${PGID-1000}

View File

@ -6,7 +6,7 @@ services:
digikam: digikam:
image: lscr.io/linuxserver/digikam:${tag-latest} image: lscr.io/linuxserver/digikam:${tag-latest}
container_name: digikam container_name: digikam
network_mode: ${net-bridge} network_mode: ${NET-bridge}
environment: environment:
- PUID=${PUID-1000} - PUID=${PUID-1000}
- PGID=${PGID-1000} - PGID=${PGID-1000}

View File

@ -6,7 +6,7 @@ services:
heimdall: heimdall:
image: lscr.io/linuxserver/heimdall:${tag-latest} image: lscr.io/linuxserver/heimdall:${tag-latest}
container_name: heimdall container_name: heimdall
network_mode: ${net-bridge} network_mode: ${NET-bridge}
environment: environment:
- PUID=${PUID-1000} - PUID=${PUID-1000}
- PGID=${PGID-1000} - PGID=${PGID-1000}

View File

@ -5,7 +5,7 @@ services:
jellyfin: jellyfin:
image: linuxserver/jellyfin:${tag-latest} image: linuxserver/jellyfin:${tag-latest}
container_name: jellyfin container_name: jellyfin
network_mode: ${net-bridge} network_mode: ${NET-bridge}
environment: environment:
- PUID=${PUID-1000} - PUID=${PUID-1000}
- PGID=${PGID-1000} - PGID=${PGID-1000}

View File

@ -8,7 +8,7 @@ services:
mqtt-explorer: mqtt-explorer:
image: smeagolworms4/mqtt-explorer:${tag-latest} image: smeagolworms4/mqtt-explorer:${tag-latest}
container_name: mqtt-explorer container_name: mqtt-explorer
network_mode: ${net-bridge} network_mode: ${NET-bridge}
environment: environment:
- PUID=${PUID-1000} - PUID=${PUID-1000}
- PGID=${PGID-1000} - PGID=${PGID-1000}

View File

@ -8,7 +8,7 @@ services:
octoprint: octoprint:
image: octoprint/octoprint:${tag-latest} image: octoprint/octoprint:${tag-latest}
container_name: octoprint container_name: octoprint
network_mode: ${net-bridge} network_mode: ${NET-bridge}
restart: ${RST-unless-stopped} restart: ${RST-unless-stopped}
user: ${USER-1000:1000} user: ${USER-1000:1000}
volumes: volumes:

View File

@ -5,7 +5,7 @@ services:
qbittorrent: qbittorrent:
image: linuxserver/qbittorrent:${tag-latest} image: linuxserver/qbittorrent:${tag-latest}
container_name: qbittorrent container_name: qbittorrent
network_mode: ${net-bridge} network_mode: ${NET-bridge}
volumes: volumes:
- /qbittorrent:/config - /qbittorrent:/config
- /downloads:/downloads - /downloads:/downloads

View File

@ -19,7 +19,7 @@ services:
image: elswork/samba:${tag-latest} image: elswork/samba:${tag-latest}
container_name: samba container_name: samba
hostname: samba hostname: samba
network_mode: ${net-bridge} network_mode: ${NET-bridge}
restart: ${RST-unless-stopped} restart: ${RST-unless-stopped}
environment: environment:
- TZ=${TZ-Europe/Amsterdam} - TZ=${TZ-Europe/Amsterdam}

View File

@ -1,4 +1,15 @@
Portainer Stack: Portainer Stack:
```yaml ```yaml
```
Portainer .env:
```
PUID=
PGID=
TZ=
RST=
NET=
``` ```

View File

@ -7,7 +7,7 @@ services:
image: louislam/uptime-kuma:1 image: louislam/uptime-kuma:1
container_name: uptime container_name: uptime
hostname: uptime hostname: uptime
network_mode: ${net-bridge} network_mode: ${NET-bridge}
volumes: volumes:
- /uptime_kuma:/app/data - /uptime_kuma:/app/data
restart: ${RST-unless-stopped} restart: ${RST-unless-stopped}