Skip to content

Commit

Permalink
Remove erroneous commas in nomadTasks
Browse files Browse the repository at this point in the history
  • Loading branch information
jhbertra committed Mar 16, 2023
1 parent afd11ef commit ae18c55
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deploy/nomadTasks.nix
Expand Up @@ -154,7 +154,7 @@ rec {
HTTP_PORT = "\${NOMAD_PORT_tx_http}";
};
config.image = ociNamer oci-images.marlowe-tx;
config.ports = [ "tx", "tx_http" ];
config.ports = [ "tx" "tx_http" ];
service.port = "tx";
user = "0:0";
driver = "docker";
Expand All @@ -177,7 +177,7 @@ rec {
HTTP_PORT = "\${NOMAD_PORT_proxy_http}";
};
config.image = ociNamer oci-images.marlowe-proxy;
config.ports = [ "proxy", "proxy_http" ];
config.ports = [ "proxy" "proxy_http" ];
service.port = "proxy";
user = "0:0";
driver = "docker";
Expand Down

0 comments on commit ae18c55

Please sign in to comment.