Deployment stuff
This commit is contained in:
+2
-1
@@ -1 +1,2 @@
|
|||||||
.env
|
.env
|
||||||
|
*.tar.gz
|
||||||
Executable
+10
@@ -0,0 +1,10 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
if [ -x "$(command -v docker)" ]; then
|
||||||
|
docker load -i tam3-webclient.tar.gz
|
||||||
|
elif [ -x "$(command -v podman)" ]; then
|
||||||
|
podman load -i tam3-webclient.tar.gz
|
||||||
|
else
|
||||||
|
echo "Neither Docker nor Podman are installed. Please install whichever you prefer and try again."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
if [ -x "$(command -v docker)" ]; then
|
||||||
|
docker load -i tam3-api.tar.gz
|
||||||
|
docker load -i tam3-db.tar.gz
|
||||||
|
elif [ -x "$(command -v podman)" ]; then
|
||||||
|
podman load -i tam3-api.tar.gz
|
||||||
|
podman load -i tam3-db.tar.gz
|
||||||
|
else
|
||||||
|
echo "Neither Docker nor Podman are installed. Please install whichever you prefer and try again."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
Reference in New Issue
Block a user