1
0
Fork 0

webserver: Fix network name

This commit is contained in:
Daniel Kempkens 2022-07-30 23:20:57 +02:00
parent 9623ea10be
commit 7ed6602f7b

View file

@ -6,7 +6,7 @@
image = "robbertkl/ipv6nat:latest"; image = "robbertkl/ipv6nat:latest";
name = "ipv6nat"; name = "ipv6nat";
restart = "always"; restart = "always";
networks = [ "web" ]; networks = [ "webserver" ];
capabilities = { capabilities = {
ALL = false; ALL = false;
NET_ADMIN = true; NET_ADMIN = true;
@ -23,7 +23,7 @@
service = { service = {
image = "ghcr.io/nifoc/ifconfig.sexy-caddy:master"; image = "ghcr.io/nifoc/ifconfig.sexy-caddy:master";
restart = "always"; restart = "always";
networks = [ "web" ]; networks = [ "webserver" ];
}; };
}; };
}; };