From e442c5fac21b3192fc830c8d4fb105a79353e306 Mon Sep 17 00:00:00 2001 From: Romain Bardou Date: Tue, 4 Oct 2022 14:47:33 +0200 Subject: [PATCH 1/2] Docker: fix PROTOCOL in docker-compose --- scripts/docker/kathmandu.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/docker/kathmandu.yml b/scripts/docker/kathmandu.yml index 369c7159ce61..ffd841cdaf75 100644 --- a/scripts/docker/kathmandu.yml +++ b/scripts/docker/kathmandu.yml @@ -11,7 +11,7 @@ services: environment: NODE_RPC_ADDR: "0.0.0.0" NODE_HOST: octez-node - PROTOCOL: 014-PtKathma + PROTOCOL: PtKathma volumes: - node_data:/var/run/tezos/node - client_data:/var/run/tezos/client @@ -25,7 +25,7 @@ services: environment: NODE_RPC_ADDR: "0.0.0.0" NODE_HOST: octez-node - PROTOCOL: 014-PtKathma + PROTOCOL: PtKathma volumes: - client_data:/var/run/tezos/client - node_data:/var/run/tezos/node @@ -40,7 +40,7 @@ services: environment: NODE_RPC_ADDR: "0.0.0.0" NODE_HOST: octez-node - PROTOCOL: 014-PtKathma + PROTOCOL: PtKathma volumes: - client_data:/var/run/tezos/client - node_data:/var/run/tezos/node -- GitLab From a72bb940953d7baf283e00861defdabe2e23bab7 Mon Sep 17 00:00:00 2001 From: Romain Bardou Date: Tue, 4 Oct 2022 17:56:23 +0200 Subject: [PATCH 2/2] Docker: use the new names for the commands --- scripts/docker/alpha.yml | 6 +++--- scripts/docker/kathmandu.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/scripts/docker/alpha.yml b/scripts/docker/alpha.yml index 61e7f58fd304..d8139ce8d079 100644 --- a/scripts/docker/alpha.yml +++ b/scripts/docker/alpha.yml @@ -4,7 +4,7 @@ services: container_name: octez-node-alpha image: tezos/tezos:latest hostname: octez-node - command: tezos-node + command: octez-node ports: - 9732:9732 - 8732:8732 @@ -21,7 +21,7 @@ services: container_name: octez-baker-alpha image: tezos/tezos:latest hostname: octez-baker - command: tezos-baker --liquidity-baking-toggle-vote $LIQUIDITY_BAKING_VOTE + command: octez-baker --liquidity-baking-toggle-vote $LIQUIDITY_BAKING_VOTE environment: NODE_RPC_ADDR: "0.0.0.0" NODE_HOST: octez-node @@ -36,7 +36,7 @@ services: container_name: octez-accuser-alpha image: tezos/tezos:latest hostname: octez-accuser - command: tezos-accuser + command: octez-accuser environment: NODE_RPC_ADDR: "0.0.0.0" NODE_HOST: octez-node diff --git a/scripts/docker/kathmandu.yml b/scripts/docker/kathmandu.yml index ffd841cdaf75..815cd9c77430 100644 --- a/scripts/docker/kathmandu.yml +++ b/scripts/docker/kathmandu.yml @@ -4,7 +4,7 @@ services: container_name: octez-node-kathmandu image: tezos/tezos:latest hostname: octez-node - command: tezos-node + command: octez-node ports: - 9732:9732 - 8732:8732 @@ -21,7 +21,7 @@ services: container_name: octez-baker-kathmandu image: tezos/tezos:latest hostname: octez-baker - command: tezos-baker --liquidity-baking-toggle-vote $LIQUIDITY_BAKING_VOTE + command: octez-baker --liquidity-baking-toggle-vote $LIQUIDITY_BAKING_VOTE environment: NODE_RPC_ADDR: "0.0.0.0" NODE_HOST: octez-node @@ -36,7 +36,7 @@ services: container_name: octez-accuser-kathmandu image: tezos/tezos:latest hostname: octez-accuser - command: tezos-accuser + command: octez-accuser environment: NODE_RPC_ADDR: "0.0.0.0" NODE_HOST: octez-node -- GitLab