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