From 49b97e5f76fc078796dec437ca52cdf24bf2369f Mon Sep 17 00:00:00 2001 From: Matthew Sevey <15232757+MSevey@users.noreply.github.com> Date: Tue, 2 Jul 2024 09:57:27 -0400 Subject: [PATCH 1/2] chore: bump local-da docker image tags --- compose.yaml | 2 +- main.star | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/compose.yaml b/compose.yaml index f971df0..2f6b01a 100644 --- a/compose.yaml +++ b/compose.yaml @@ -18,6 +18,6 @@ services: - local-da local-da: - image: ghcr.io/rollkit/local-da:aa37274 + image: ghcr.io/rollkit/local-da:v0.2.1 ports: - "7980:7980" diff --git a/main.star b/main.star index 61750fb..1fe09c6 100644 --- a/main.star +++ b/main.star @@ -20,7 +20,7 @@ def run(plan): local_da = plan.add_service( name="local-da", config=ServiceConfig( - image="ghcr.io/rollkit/local-da:aa37274", + image="ghcr.io/rollkit/local-da:v0.2.1", ports=local_da_ports, public_ports=local_da_ports, ), From 35b9a951d2253f86e3466d413f2481e084bf2670 Mon Sep 17 00:00:00 2001 From: Matthew Sevey <15232757+MSevey@users.noreply.github.com> Date: Tue, 2 Jul 2024 10:14:52 -0400 Subject: [PATCH 2/2] chore: bump gm image --- main.star | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.star b/main.star index 1fe09c6..a4e26c2 100644 --- a/main.star +++ b/main.star @@ -53,7 +53,8 @@ def run(plan): gm = plan.add_service( name="gm", config=ServiceConfig( - image="ghcr.io/rollkit/gm:49147e3", + # Using rollkit version v0.13.5 + image="ghcr.io/rollkit/gm:05bd40e", cmd=["/bin/sh", "-c", " ".join(gm_start_cmd)], ports=gm_ports, public_ports=gm_ports,