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:latestOn Apple Silicon targeting a Linux amd64 cluster:
docker buildx build --platform linux/amd64 \
-t bouinecache/bouine:latest \
--push .For local testing on your machine:
docker build -t bouine:dev .
docker run --rm -p 8080:80 -p 9000:9000 bouine:devThe Dockerfile uses BUILDPLATFORM/TARGETARCH so Go cross-compiles natively instead of running the compiler under QEMU.