From 022afdc352cb61cecb57db7bbc7282efef111818 Mon Sep 17 00:00:00 2001 From: David Boreham Date: Sat, 25 Mar 2023 18:26:21 -0600 Subject: [PATCH] Use dashes not underscore to match docker-compose file in hosting repo and convention --- .../container-build/cerc-act-runner-task-executor/build.sh | 3 +++ app/data/container-build/cerc-act-runner/build.sh | 3 +++ .../container-build/cerc-act_runner-task-executor/build.sh | 3 --- app/data/container-build/cerc-act_runner/build.sh | 3 --- app/data/stacks/package-registry/stack.yml | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) create mode 100755 app/data/container-build/cerc-act-runner-task-executor/build.sh create mode 100755 app/data/container-build/cerc-act-runner/build.sh delete mode 100755 app/data/container-build/cerc-act_runner-task-executor/build.sh delete mode 100755 app/data/container-build/cerc-act_runner/build.sh diff --git a/app/data/container-build/cerc-act-runner-task-executor/build.sh b/app/data/container-build/cerc-act-runner-task-executor/build.sh new file mode 100755 index 00000000..843e86af --- /dev/null +++ b/app/data/container-build/cerc-act-runner-task-executor/build.sh @@ -0,0 +1,3 @@ +#!/usr/bin/env bash +# Build a local version of the task executor for act-runner +docker build -t cerc/act-runner-task-executor:local -f ${CERC_REPO_BASE_DIR}/act_runner/Dockerfile.task-executor ${CERC_REPO_BASE_DIR}/act_runner diff --git a/app/data/container-build/cerc-act-runner/build.sh b/app/data/container-build/cerc-act-runner/build.sh new file mode 100755 index 00000000..2fdb3f2e --- /dev/null +++ b/app/data/container-build/cerc-act-runner/build.sh @@ -0,0 +1,3 @@ +#!/usr/bin/env bash +# Build a local version of the act-runner image +docker build -t cerc/act-runner:local -f ${CERC_REPO_BASE_DIR}/act_runner/Dockerfile ${CERC_REPO_BASE_DIR}/act_runner diff --git a/app/data/container-build/cerc-act_runner-task-executor/build.sh b/app/data/container-build/cerc-act_runner-task-executor/build.sh deleted file mode 100755 index 9d357b30..00000000 --- a/app/data/container-build/cerc-act_runner-task-executor/build.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/usr/bin/env bash -# Build a local version of the task executor for act_runner -docker build -t cerc/act_runner-task-executor:local -f ${CERC_REPO_BASE_DIR}/act_runner/Dockerfile.task-executor ${CERC_REPO_BASE_DIR}/act_runner diff --git a/app/data/container-build/cerc-act_runner/build.sh b/app/data/container-build/cerc-act_runner/build.sh deleted file mode 100755 index 025dc7a7..00000000 --- a/app/data/container-build/cerc-act_runner/build.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/usr/bin/env bash -# Build a local version of the act_runner image -docker build -t cerc/act_runner:local -f ${CERC_REPO_BASE_DIR}/act_runner/Dockerfile ${CERC_REPO_BASE_DIR}/act_runner diff --git a/app/data/stacks/package-registry/stack.yml b/app/data/stacks/package-registry/stack.yml index 22720cac..596f6e72 100644 --- a/app/data/stacks/package-registry/stack.yml +++ b/app/data/stacks/package-registry/stack.yml @@ -5,8 +5,8 @@ repos: - cerc-io/hosting - telackey/act_runner containers: - - cerc/act_runner - - cerc/act_runner-task-executor + - cerc/act-runner + - cerc/act-runner-task-executor pods: - name: gitea repository: cerc-io/hosting