27 lines
372 B
Bash
Raw Normal View History

2025-07-31 09:25:17 +02:00
#!/bin/sh
2025-08-07 11:15:11 +02:00
set -e
2025-07-31 09:25:17 +02:00
mkdir -p ./data/things
mkdir -p ./data/trash
2025-08-07 11:15:11 +02:00
if [ -z "$(podman images -q gateau-cuda11)" ]
then
echo "Container missing, building..."
./build.sh
fi
2025-07-31 09:25:17 +02:00
podman run \
2025-07-31 16:45:42 +02:00
--name bardak \
2025-07-31 09:25:17 +02:00
--init \
--read-only \
-v ./data/things:/app/things \
-v ./data/trash:/app/trash \
--publish 8085:8085 \
2025-08-07 11:15:11 +02:00
`#--detach` \
`#--restart=always` \
--replace \
2025-07-31 09:25:17 +02:00
bardak