Skip to content

Commit

Permalink
build: use compose for spinning up local services
Browse files Browse the repository at this point in the history
  • Loading branch information
ctron committed Aug 17, 2022
1 parent a862c21 commit 719154d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
File renamed without changes.
6 changes: 3 additions & 3 deletions justfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
run-deps:
podman-compose -f develop/docker-compose.yml up
podman-compose -f develop/compose.yaml up

start-deps:
podman-compose -f develop/docker-compose.yml up -d
podman-compose -f develop/compose.yaml up -d

stop-deps:
podman-compose -f develop/docker-compose.yml down
podman-compose -f develop/compose.yaml down

restart-deps: stop-deps start-deps

0 comments on commit 719154d

Please sign in to comment.