fml
Some checks failed
Deploy bot / build-and-deploy (push) Failing after 23s

This commit is contained in:
2025-08-26 16:14:13 +02:00
parent 312d10de99
commit 5744ebea0f
2 changed files with 11 additions and 5 deletions

View File

@ -14,8 +14,11 @@ jobs:
- name: Checkout code - name: Checkout code
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Deploy with Docker Compose - name: Stop containers
run: | run: docker compose down
docker compose down
docker compose build --no-cache - name: Build containers
docker compose up -d run: docker compose build --no-cache
- name: Deploy containers
run: docker compose up -d

3
docker-bake.override.hcl Normal file
View File

@ -0,0 +1,3 @@
group "default" {
targets = ["api", "web", "bot"]
}