v0.1.9 Cleanup and organization

This commit is contained in:
2023-03-27 21:41:37 -04:00
parent 1a2e9bbb98
commit 14952bf791
19 changed files with 342 additions and 487 deletions

View File

@@ -1,12 +1,13 @@
SHELL := /bin/bash
build:
docker-compose build
docker rmi siren && docker-compose build
test:
docker run --rm -it siren:latest bash
up:
if [[ "$(docker images -q siren 2> /dev/null)" == "" ]]; then docker-compose build; fi; \
docker-compose up -d
down:
@@ -15,3 +16,5 @@ down:
exec:
docker exec -it siren bash
clean:
docker rmi siren