Skip to content

Commit

Permalink
include taskfile (#208)
Browse files Browse the repository at this point in the history
  • Loading branch information
No767 authored Oct 3, 2024
1 parent 94471b5 commit a57f1c5
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions taskfile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
version: '3'

tasks:
dev-up:
preconditions:
- test -f docker/docker-compose.dev.yml
cmds:
- docker compose -f docker/docker-compose.dev.yml up -d

dev-stop:
preconditions:
- test -f docker/docker-compose.dev.yml
cmds:
- docker compose -f docker/docker-compose.dev.yml stop

0 comments on commit a57f1c5

Please sign in to comment.