vpn integration
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user