vpn integration

This commit is contained in:
2026-04-11 21:51:30 +02:00
parent 4671e5da63
commit c4d27e9842
26 changed files with 2566 additions and 899 deletions
+43
View File
@@ -0,0 +1,43 @@
services:
redis:
restart: "no"
web:
restart: "no"
volumes:
- ./nginx/dev.nginx:/etc/nginx/conf.d/default.conf:ro
ports:
- "${LISTEN_PORT:-8000}:80"
transmission:
restart: "no"
ports: !reset []
app:
build:
dockerfile: .docker/app/Dockerfile.dev
restart: "no"
ports:
- "${DEV_SERVER_PORT:-8080}:${DEV_SERVER_PORT:-8080}"
labels: !reset []
healthcheck:
disable: true
command: >
bash -c "sleep 2
&& python manage.py migrate
&& ./dev_run.sh"
event:
extends:
service: app
restart: "no"
ports: !reset []
command: >
bash -c "sleep 2 && python manage.py torrent_event"
gluetun:
restart: "no"
networks:
web:
external: false