1
0

Make ws4kp being exposed optional

This commit is contained in:
2025-11-17 08:43:12 -05:00
parent ef0ddbe778
commit cb35e05754
5 changed files with 35 additions and 12 deletions

View File

@@ -1,5 +1,14 @@
# Docker Build Commands
## Setup buildx builder (one-time setup)
# Create and use the multiplatform builder
docker buildx create --name multiplatform --driver docker-container --use
docker buildx inspect --bootstrap
# Or if builder exists, just switch to it
docker buildx use multiplatform
## Build and push multi-platform image (AMD64 + ARM64)
docker buildx build --platform linux/amd64,linux/arm64 -t ghcr.io/sethwv/ws4kp-to-hls:latest --push .