Updated docker commands, docs

This commit is contained in:
Benjamin Sherriff
2024-03-03 16:17:56 -05:00
parent aebc3516b1
commit 39d9850c41
6 changed files with 35 additions and 13 deletions

View File

@@ -13,10 +13,11 @@ help: ## Help command
build: ## Build the docker image
docker compose build
utils: ## Start the utils
docker compose up -d db
docker compose up -d redis
docker compose up -d minio
backend-up: ## Start the backend containers
docker compose --profile backend up -d
backend-down: ## Stop the backend containers
docker compose --profile backend down
up: ## Start the app
docker compose up -d
@@ -24,7 +25,7 @@ up: ## Start the app
down: ## Stop the app
docker compose down
clean:
clean: ## Clean the app
docker compose down && \
docker image rm siren-service || \
docker network rm siren_frontend || \