Files
pinchflat/docker-compose.ci.yml
T
hermes-agent a891cb8902
Build, Lint, and Test / Build, Lint, and Test (push) Failing after 1m36s
Fix CI for Gitea Actions: remove volume mount, run all commands in container
The docker-compose.ci.yml mounted '.:/app' which works on GitHub Actions
(where the workspace is the repo root) but not on Gitea Actions (where
the workspace path differs). The built Docker image already has all files
from COPY . ./ so the volume mount is unnecessary for CI.

Also moved yarn install inside the container and run full test suite.
2026-07-04 09:42:10 +00:00

11 lines
187 B
YAML

services:
phx:
build:
context: .
dockerfile: ./docker/dev.Dockerfile
environment:
- MIX_ENV=test
ports:
- '4008:4008'
command: tail -F /dev/null