Title here
Summary here
docker run --rm \
-p 8080:80 \
-p 9000:9000 \
bouinecache/bouine:latestdocker run --rm \
-p 8080:80 \
-p 9000:9000 \
-v "$PWD/config.yaml:/etc/bouine/config.yaml:ro" \
bouinecache/bouine:latestSur Apple Silicon ciblant un cluster Linux amd64 :
docker buildx build --platform linux/amd64 \
-t bouinecache/bouine:latest \
--push .Pour des tests locaux sur votre machine :
docker build -t bouine:dev .
docker run --rm -p 8080:80 -p 9000:9000 bouine:devLe Dockerfile utilise BUILDPLATFORM/TARGETARCH pour que Go effectue une compilation croisée native au lieu d’exécuter le compilateur sous QEMU.