This repository has been archived on 2024-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
spadinastan/Taskfile.internal.yml
Marc Cataford 92d8d3672d
feat(services): bookstack (#33)
* feat(bookstack): working example bookstack instance

* build(taskfiles): add Taskfile to handle start+stop

* fix: ensure that network exists without erroring

* chore(git): ignore Task bin

* docs: notes on volumes, task commands

* build(taskfiles): add build command, centralized user-supplied env

* refactor(taskfiles): split away internal tasks

* refactor(taskfiles): move environment variables into shared env.yml
2023-12-15 12:40:14 -05:00

18 lines
380 B
YAML

version: '3'
output: prefixed
internal: true
tasks:
build-images:
prefix: "build image: {{ .SERVICE }}"
dir: services/{{ .SERVICE }}
cmd: . ./build.sh
start-service:
prefix: "start: {{ .SERVICE }}"
dir: services/{{ .SERVICE }}
cmd: . ./start.sh
stop-service:
prefix: "stop: {{ .SERVICE }}"
dir: services/{{ .SERVICE }}
cmd: . ./stop.sh