21 lines
389 B
YAML
21 lines
389 B
YAML
services:
|
|
# vpn
|
|
gluetun:
|
|
image: qmcgaw/gluetun
|
|
cap_add:
|
|
- NET_ADMIN
|
|
devices:
|
|
- /dev/net/tun:/dev/net/tun
|
|
ports:
|
|
- 8686:8686
|
|
env_file:
|
|
- .env
|
|
|
|
# managing media
|
|
lidarr:
|
|
container_name: lidarr
|
|
image: lscr.io/linuxserver/lidarr:latest
|
|
volumes:
|
|
- ./lidarr:/config
|
|
- ../music:/music
|
|
network_mode: "service:gluetun"
|