ps2live: flip agg/meta ports

This commit is contained in:
41666 2024-03-10 20:33:14 -04:00
parent 61da43c829
commit 95f03fc038

View file

@ -10,9 +10,9 @@ in {
metagame = { metagame = {
image = image "metagame"; image = image "metagame";
environment = { environment = {
PORT = port 0; PORT = port 1;
}; };
ports = [ "${port 0}:${port 0}" ]; ports = [ "${port 1}:${port 1}" ];
environmentFiles = [ environmentFiles = [
config.sops.secrets.metagame.path config.sops.secrets.metagame.path
]; ];
@ -21,9 +21,9 @@ in {
aggpop = { aggpop = {
image = image "agg-population"; image = image "agg-population";
environment = { environment = {
PORT = port 1; PORT = port 0;
}; };
ports = [ "${port 1}:${port 1}" ]; ports = [ "${port 0}:${port 0}" ];
}; };
}; };
} }