21 lines
383 B
YAML
21 lines
383 B
YAML
services:
|
|
# vpn
|
|
gluetun:
|
|
image: qmcgaw/gluetun
|
|
cap_add:
|
|
- NET_ADMIN
|
|
devices:
|
|
- /dev/net/tun:/dev/net/tun
|
|
ports:
|
|
- 8686:8686
|
|
|
|
# managing media
|
|
lidarr:
|
|
container_name: lidarr
|
|
image: ghcr.io/hotio/lidarr
|
|
environment:
|
|
- UMASK=002
|
|
volumes:
|
|
- ./lidarr:/config
|
|
- ../Music:/data
|
|
network_mode: "service:gluetun"
|