Created
June 19, 2025 14:08
-
-
Save Aldo-f/6f1cd6f15bcb75a52fb0bfdcd6173f50 to your computer and use it in GitHub Desktop.
Beer money and Chill
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
services: | |
plex: | |
image: lscr.io/linuxserver/plex:latest | |
container_name: plex | |
environment: | |
- PUID=1000 | |
- PGID=1000 | |
- VERSION=docker | |
- TZ=Europe/Brussels | |
volumes: | |
- ./config/plex:/config | |
- /mnt/nas/shared:/data | |
ports: | |
- "32400:32400" | |
restart: unless-stopped | |
qbittorrent: | |
image: lscr.io/linuxserver/qbittorrent:latest | |
container_name: qbittorrent | |
environment: | |
- PUID=1000 | |
- PGID=1001 | |
- TZ=Europe/Brussels | |
volumes: | |
- ./config/qbittorrent:/config | |
- /mnt/nas/shared/torrents:/downloads | |
ports: | |
- "8080:8080" | |
restart: unless-stopped | |
jellyfin: | |
image: lscr.io/linuxserver/jellyfin:latest | |
container_name: jellyfin | |
environment: | |
- PUID=1000 | |
- PGID=1000 | |
- TZ=Europe/Brussels | |
volumes: | |
- ./config/jellyfin:/config | |
- /mnt/nas/shared:/media | |
ports: | |
- "8096:8096" | |
- "8920:8920" | |
restart: unless-stopped | |
honeygain: | |
image: honeygain/honeygain | |
container_name: honeygain | |
restart: unless-stopped | |
command: | |
- "-tou-accept" | |
- "-email" | |
- "${HONEYGAIN_EMAIL}" | |
- "-pass" | |
- "${HONEYGAIN_PASSWORD}" | |
- "-device" | |
- "${HONEYGAIN_DEVICE}" | |
environment: | |
- HONEYGAIN_EMAIL | |
- HONEYGAIN_PASSWORD | |
- HONEYGAIN_DEVICE | |
psclient: | |
image: packetstream/psclient:latest | |
container_name: psclient | |
restart: always | |
environment: | |
- CID=${PACKETSTREAM_CID} | |
mysterium: | |
image: mysteriumnetwork/myst:latest | |
container_name: mysterium | |
restart: unless-stopped | |
cap_add: | |
- NET_ADMIN | |
ports: | |
- "4449:4449" | |
volumes: | |
- ./config/mysterium:/var/lib/mysterium-node | |
command: service --agreed-terms-and-conditions | |
watchtower: | |
image: containrrr/watchtower | |
container_name: watchtower | |
restart: always | |
volumes: | |
- /var/run/docker.sock:/var/run/docker.sock | |
command: | |
- --cleanup | |
- --include-stopped | |
- --include-restarting | |
- --revive-stopped | |
- --interval | |
- "60" | |
depends_on: | |
- psclient |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment