Files
query-orchestration/scripts/compose.yml
T
Michael McGuinness 0ebb8a21a1 Merged in bugfix/cleanup (pull request #10)
Clean Up Testing and Linting

* somescriptcleanup

* mostgolangci

* deplatest

* imageversions

* usingscratch

* movedqueuefrtesting

* finishedunittesting

* linting

* taskfilecontext
2025-01-10 11:12:03 +00:00

25 lines
464 B
YAML

---
# https://taskfile.dev
version: '3'
vars:
COMPOSE_FILE: "deployments/compose.yaml"
tasks:
build:
cmds:
- docker compose -f {{.COMPOSE_FILE}} build
up:
cmds:
- docker compose -f {{.COMPOSE_FILE}} up --no-recreate
up:bg:
cmds:
- docker compose -f {{.COMPOSE_FILE}} up --no-recreate -d
down:
cmds:
- docker compose -f {{.COMPOSE_FILE}} down
lint:
cmds:
- docker compose -f {{.COMPOSE_FILE}} config