(change): Client docker deployment

This commit is contained in:
2026-07-25 22:53:08 -04:00
parent 10f1b6fa5f
commit 86a81e339c
2 changed files with 3 additions and 2 deletions
+9
View File
@@ -0,0 +1,9 @@
#!/bin/sh
source ./prod.env
if [ -x "$(command -v docker)" ]; then
docker run -d --name tam-client --network host --env-file ./prod.env -v tam-data:/data --restart unless-stopped dbob16/tam-client:${TAM_VERSION}
elif [ -x "$(command -v podman)" ]; then
podman run -d --name tam-client --network host --env-file ./prod.env -v tam-data:/data --restart unless-stopped dbob16/tam-client:${TAM_VERSION}
fi