Updated docker files and layout

This commit is contained in:
2023-01-08 09:16:48 -05:00
parent 03329fb106
commit 3c74682ff7
18 changed files with 279 additions and 403 deletions

13
Makefile Normal file
View File

@@ -0,0 +1,13 @@
SHELL := /bin/bash
build:
docker build --tag siren .
test:
docker run --rm -it siren:latest bash
up:
docker-compose up -d
down:
docker-compose down