fix: mount /apps and docker socket in PR workflow build-and-deploy-ci job
Pull Request / unit-tests (pull_request) Failing after 55s
Pull Request / build-and-deploy-ci (pull_request) Has been skipped
Pull Request / analyze-bump-type (pull_request) Has been skipped

The build-and-deploy-ci job failed because /apps/euchre_camp_ci/docker-compose.yml
was not accessible inside the job container. Add volume mounts for /apps and the
docker socket so the job can read the CI compose file and run docker compose commands.

Requires runner config.yaml with valid_volumes for /apps and /var/run/docker.sock.
This commit is contained in:
2026-05-16 19:57:48 -07:00
parent 861e14503b
commit 671ee78a47
+3
View File
@@ -37,6 +37,9 @@ jobs:
container: container:
image: docker.notsosm.art/euchre-camp/ci-base:latest image: docker.notsosm.art/euchre-camp/ci-base:latest
options: --user root options: --user root
volumes:
- /apps:/apps
- /var/run/docker.sock:/var/run/docker.sock
steps: steps:
- name: Checkout code - name: Checkout code