This commit is contained in:
Sebastian
2024-10-20 04:07:18 +02:00
parent fb6ebad7bf
commit 4af8d3a65e
13 changed files with 14852 additions and 1 deletions

12
manta-pacific/Makefile Normal file
View File

@@ -0,0 +1,12 @@
manta-up:
@bash ./manta-up.sh
.PHONY: manta-up
manta-down:
@(docker-compose -f docker-compose.yml down)
.PHONY: manta-down
manta-clean: manta-down
docker image ls 'manta-pacific*' --format='{{.Repository}}' | xargs -r docker rmi
docker volume ls --filter name=manta-pacific --format='{{.Name}}' | xargs -r docker volume rm
.PHONY: manta-clean