mirror of
https://github.com/runyanjake/olomana.git
synced 2025-10-04 21:27:29 -07:00
don't need version number in docker anymore. who knew
This commit is contained in:
parent
e11ef5aca3
commit
9f5c680f22
@ -69,3 +69,17 @@ https://grafana.com/docs/grafana/latest/setup-grafana/installation/docker/
|
||||
|
||||
##### Build
|
||||
Test build with `docker compose build homepage`.
|
||||
|
||||
### NordVPN
|
||||
|
||||
#### Instructions
|
||||
|
||||
##### Files
|
||||
Create `nordvpn/token.txt` with NordVPN token which is generated from NordVPN website.
|
||||
|
||||
##### Notes
|
||||
Can use either nordlynx or nordvpn in nordlynx configuration.
|
||||
|
||||
#### References
|
||||
https://github.com/bubuntux/nordvpn
|
||||
https://github.com/bubuntux/nordlynx
|
||||
|
@ -1,5 +1,3 @@
|
||||
version: "3"
|
||||
|
||||
networks:
|
||||
traefik:
|
||||
driver: bridge
|
||||
@ -123,3 +121,40 @@ services:
|
||||
- traefik.http.routers.homepage.tls=true
|
||||
- traefik.http.routers.homepage.tls.certresolver=lets-encrypt
|
||||
- traefik.http.services.homepage.loadbalancer.server.port=81
|
||||
|
||||
nordlynx:
|
||||
image: ghcr.io/bubuntux/nordlynx
|
||||
container_name: nordlynx
|
||||
restart: unless-stopped
|
||||
network_mode: bridge
|
||||
cap_add:
|
||||
- NET_ADMIN
|
||||
- NET_RAW
|
||||
environment:
|
||||
- PRIVATE_KEY=mDnVa4EMbnlSF8Sg/i657hf+NRyWQxQjKTwkImD/HWE=
|
||||
- NET_LOCAL=192.168.1.0/24
|
||||
- TZ=America/Los_Angeles
|
||||
- QUERY=filters\[country_id\]=202
|
||||
ports:
|
||||
- "8888:8888"
|
||||
- 6881:6881
|
||||
- 6881:6881/udp
|
||||
labels:
|
||||
- traefik.enable=false
|
||||
|
||||
qb:
|
||||
image: ghcr.io/linuxserver/qbittorrent:latest
|
||||
container_name: qb
|
||||
restart: unless-stopped
|
||||
depends_on:
|
||||
- nordlynx
|
||||
network_mode: service:nordlynx
|
||||
environment:
|
||||
- PUID=1001
|
||||
- PGID=1001
|
||||
- WEBUI_PORT=8888
|
||||
volumes:
|
||||
- /data/write/qb/appdata/config:/config
|
||||
- /data/write/qb/downloads:/downloads
|
||||
labels:
|
||||
- traefik.enable=false
|
||||
|
Loading…
x
Reference in New Issue
Block a user