mirror of
https://github.com/runyanjake/olomana.git
synced 2025-10-05 13:47:30 -07:00
35 lines
762 B
Plaintext
35 lines
762 B
Plaintext
version: "3"
|
|
|
|
services:
|
|
nordlynx:
|
|
image: ghcr.io/bubuntux/nordlynx
|
|
container_name: nordlynx
|
|
cap_add:
|
|
- NET_ADMIN
|
|
environment:
|
|
- PRIVATE_KEY=[[PRIVATE_KEY]]
|
|
- NET_LOCAL=192.168.1.0/24
|
|
- TZ=America/Los_Angeles
|
|
- QUERY=filters\[country_id\]=202
|
|
ports:
|
|
- "[[HOST_URL]]:8888"
|
|
restart: "unless-stopped"
|
|
labels:
|
|
- traefik.enable=false
|
|
|
|
qb:
|
|
image: ghcr.io/linuxserver/qbittorrent:latest
|
|
container_name: qb
|
|
restart: always
|
|
network_mode: service:nordlynx
|
|
environment:
|
|
- WEBUI_PORT=[[HOST_URL]]
|
|
volumes:
|
|
- /data/write/qb/appdata/config:/config
|
|
- /data/write/qb/downloads:/downloads
|
|
depends_on:
|
|
- nordlynx
|
|
labels:
|
|
- traefik.enable=false
|
|
|