Arion: Add windscribe port refresh

https://github.com/dumbasPL/deluge-windscribe-ephemeral-port v3

add windscribe port refresh
This commit is contained in:
GHOSCHT 2024-07-05 15:51:29 +02:00
parent c6295daafe
commit 28be439381
Signed by: ghoscht
GPG key ID: 2C2C1C62A5388E82

View file

@ -5,6 +5,7 @@
name = "dmz";
external = true;
};
networks.internal = {};
services = {
jellyfin.service = {
@ -130,6 +131,7 @@
restart = "always";
networks = [
"dmz"
"internal"
];
};
prowlarr.service = {
@ -400,5 +402,18 @@
};
restart = "always";
};
port-refresh.service = {
image = "ghoscht/windscribe-ephemeral-port:latest";
container_name = "port-refresh";
volumes = [
"/storage/dataset/docker/media/port-refresh_config/config.yml:/config/config.yaml"
];
networks = [
"internal"
];
depends_on = {
vpn = {condition = "service_healthy";};
};
};
};
}