8 Commits

Author SHA1 Message Date
d1f348a9fa .gitea/workflows/development-build.yaml aktualisiert
All checks were successful
Development Build / build-and-test (push) Successful in 48s
Development Build / docker-build-and-push (push) Successful in 5m58s
2025-09-25 17:02:19 +02:00
cff9a6699c .gitea/workflows/development-build.yaml aktualisiert
Some checks failed
Development Build / build-and-test (push) Successful in 49s
Development Build / docker-build-and-push (push) Failing after 10s
2025-09-25 16:57:13 +02:00
0bb0c09ce3 .gitea/workflows/development-build.yaml aktualisiert
Some checks failed
Development Build / build-and-test (push) Successful in 57s
Development Build / docker-build-and-push (push) Has been cancelled
2025-09-25 16:55:28 +02:00
5c9c9cd165 .gitea/workflows/development-build.yaml aktualisiert
Some checks failed
Development Build / build-and-test (push) Successful in 1m17s
Development Build / docker-build-and-push (push) Failing after 48s
2025-09-25 16:46:33 +02:00
b481cd764e .gitea/workflows/development-build.yaml aktualisiert
Some checks failed
Development Build / build-and-test (push) Successful in 1m21s
Development Build / docker-build-and-push (push) Has been cancelled
2025-09-25 16:42:05 +02:00
c8480bb681 docker-compose.yaml aktualisiert 2025-09-02 11:33:15 +02:00
aa35e83f6b Merge branch 'main' of https://git.triggermeelmo.com/watcher/Watcher into development 2025-08-23 00:07:04 +02:00
cd6d2a1825 Merge branch 'main' of https://git.triggermeelmo.com/watcher/Watcher into development 2025-08-22 23:01:00 +02:00
2 changed files with 14 additions and 15 deletions

View File

@@ -1,4 +1,4 @@
name: Development Build and Release name: Development Build
on: on:
push: push:
@@ -10,6 +10,7 @@ env:
DOCKER_IMAGE_NAME: 'watcher-server' DOCKER_IMAGE_NAME: 'watcher-server'
REGISTRY_URL: 'git.triggermeelmo.com/watcher' REGISTRY_URL: 'git.triggermeelmo.com/watcher'
DOCKER_PLATFORMS: 'linux/amd64,linux/arm64' DOCKER_PLATFORMS: 'linux/amd64,linux/arm64'
RUNNER_TOOL_CACHE: /toolcache # Runner Tool Cache
jobs: jobs:
build-and-test: build-and-test:
@@ -47,11 +48,11 @@ jobs:
uses: docker/setup-buildx-action@v2 uses: docker/setup-buildx-action@v2
- name: Login to Gitea Container Registry - name: Login to Gitea Container Registry
uses: docker/login-action@v2 uses: docker/login-action@v3
with: with:
registry: git.triggermeelmo.com registry: ${{ env.REGISTRY_URL}}
username: ${{ secrets.DOCKER_USERNAME }} username: ${{ secrets.AUTOMATION_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }} password: ${{ secrets.AUTOMATION_PASSWORD }}
- name: Build and Push Multi-Arch Docker Image - name: Build and Push Multi-Arch Docker Image
run: | run: |

View File

@@ -1,18 +1,16 @@
services: services:
watcher: watcher:
image: git.triggermeelmo.com/daniel-hbn/watcher/watcher:development image: git.triggermeelmo.com/watcher/watcher-server:v0.1.0
container_name: watcher container_name: watcher
deploy:
resources:
limits:
memory: 200M
restart: unless-stopped restart: unless-stopped
env_file: .env env_file: .env
ports: ports:
- "5000:5000" - "5000:5000"
volumes: volumes:
- ./data:/app/persistence - ./watcher-volumes/data:/app/persistence
- ./dumps:/app/wwwroot/downloads/sqlite - ./watcher-volumes/dumps:/app/wwwroot/downloads/sqlite
- ./logs:/app/logs - ./watcher-volumes/logs:/app/logs
healthcheck:
test: "curl -f http://localhost:5000"
interval: 1m30s
timeout: 30s
retries: 5
start_period: 30s