SGO/.woodpecker/docker-checks.yml
2025-11-20 14:27:44 -08:00

19 lines
467 B
YAML

pipeline:
docker-lint:
image: hadolint/hadolint:latest-alpine
commands:
- hadolint Dockerfile
docker-build-test:
image: docker:dind
volumes:
- /var/run/docker.sock:/var/run/docker.sock
commands:
- docker build -t sgo:test .
- docker images sgo:test
docker-compose-validate:
image: docker/compose:latest
commands:
- docker-compose config -q
- docker-compose -f docker-compose.local.yml config -q