Docker changes (#31)
All checks were successful
Release Tagging / release (push) Successful in 34s
Rust Build / Check (push) Successful in 49s
Rust Build / Test Suite (push) Successful in 1m18s
Rust Build / Rustfmt (push) Successful in 33s
Rust Build / Clippy (push) Successful in 52s
Rust Build / build (push) Successful in 1m30s
Rust Build / Check (pull_request) Successful in 58s
Rust Build / Test Suite (pull_request) Successful in 1m8s
Rust Build / Rustfmt (pull_request) Successful in 32s
Rust Build / Clippy (pull_request) Successful in 52s
Rust Build / build (pull_request) Successful in 1m19s

Reviewed-on: #31
Co-authored-by: phoenix <kundeng00@pm.me>
Co-committed-by: phoenix <kundeng00@pm.me>
This commit is contained in:
2025-04-13 18:38:38 +00:00
committed by phoenix
parent 6dec9942cc
commit fc6b66f2e6
7 changed files with 39 additions and 29 deletions

View File

@@ -1,13 +1,13 @@
# Docker stuff
#Build app
docker-compose build --ssh default app
docker compose build --ssh default auth_api
# Rebuild and bring up
docker-compose up -d --force-recreate app
docker compose up -d --force-recreate auth_api
# Bring it down
docker-compose down -v
docker compose down -v
# Pruning
docker system prune -a