0ebb8a21a1
Clean Up Testing and Linting * somescriptcleanup * mostgolangci * deplatest * imageversions * usingscratch * movedqueuefrtesting * finishedunittesting * linting * taskfilecontext
25 lines
464 B
YAML
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
|