From 1c5ba382005f8e8fded57197953191ea4dfbaaf0 Mon Sep 17 00:00:00 2001 From: Andrew Hosgood Date: Wed, 6 Nov 2024 16:58:24 +0000 Subject: [PATCH] Detatch the Docker image on up --- .github/actions/test/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/test/action.yml b/.github/actions/test/action.yml index 078e3e4..6023d7b 100644 --- a/.github/actions/test/action.yml +++ b/.github/actions/test/action.yml @@ -38,7 +38,7 @@ runs: PORT=$(yq '(.services.${{ inputs.service }}.ports)' docker-compose.yml | sed -e 's/^\- \(.*\)\:.*$/\1/') echo "PORT=$PORT" >> "$GITHUB_ENV" [[ -f "package.json" ]] && npm install - docker compose up ${{ inputs.service }} + docker compose up ${{ inputs.service }} -d shell: bash