Compare commits

..

2 Commits

Author SHA1 Message Date
Clemens Hering
c04d55c02f added deployment check
Some checks failed
Build and Deploy Container / build_and_deploy (push) Failing after 28s
2025-11-10 07:51:00 +01:00
Clemens Hering
3314e31514 removed network requirement in quadlet 2025-11-10 07:47:58 +01:00
2 changed files with 9 additions and 3 deletions

View File

@@ -89,5 +89,13 @@ jobs:
scp ./$QUADLET_FILE $TARGET_USER@$TARGET_HOST:~/.config/containers/systemd/
ssh $TARGET_USER@$TARGET_HOST '
systemctl --user daemon-reload
systemctl --user restart $CONTAINER_NAME.service
systemctl --user restart $CONTAINER_NAME
'
- name: Verify deployment
run: |
ssh $TARGET_USER@$TARGET_HOST '
podman ps --filter "name=$CONTAINER_NAME" --format "table {{.Names}}\t{{.Image}}\t{{.Status}}"
echo "Container logs:"
podman logs $CONTAINER_NAME --tail 20
'

View File

@@ -1,7 +1,5 @@
[Unit]
Description=Valtrix Website
Requires=edge.network
After=edge.network
[Container]
Image=localhost/valtrix-website