9 lines
339 B
Bash
9 lines
339 B
Bash
#!/bin/sh
|
|
# Construit l'image Docker de JB Compta sur l'hôte.
|
|
# Usage : copie ce dossier sur ton serveur Docker, puis lance : sh build.sh
|
|
set -e
|
|
cd "$(dirname "$0")"
|
|
echo "→ Construction de l'image jb-compta:latest ..."
|
|
docker build -t jb-compta:latest .
|
|
echo "✓ Image construite. Dans Portainer, utilise : image: jb-compta:latest"
|