# Prod-only override. Used exclusively by .gitea/workflows/deploy-prod.yml as: # docker compose -f docker-compose.yml -f docker-compose.deploy.yml pull # docker compose -f docker-compose.yml -f docker-compose.deploy.yml up -d # # Overriding `image:` here means `pull` fetches a specific pre-built tag from # the registry and `up -d` runs it without ever invoking `build:` — prod can # only ever run an artifact that dev already built and published under # IMAGE_TAG (the short commit SHA). See CLAUDE.md CI/CD section. services: portfolio: image: git.jerodrigged.com/jhodgkin/lisilou-portfolio-web:${IMAGE_TAG} api: image: git.jerodrigged.com/jhodgkin/lisilou-portfolio-api:${IMAGE_TAG}