You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
261 B

#!/bin/bash
echo "Copie des fichiers dans /OPT. Serveur web sur port 8099"
mkdir /opt/tandoor-pod
cp .env /opt/tandoor-pod
cp docker-compose.yml /opt/tandoor-pod
echo "Démarrage du pod Tandoor"
cd /opt/tandoor-pod
podman-compose up -d
echo "Terminé"
#end