use docker compose to test keycloak

This commit is contained in:
chrislu
2025-08-26 13:07:36 -07:00
parent 369b50d04b
commit 45ecf2cfe0
16 changed files with 973 additions and 2386 deletions
+22
View File
@@ -0,0 +1,22 @@
# Debug version of SeaweedFS with role mapping fixes
FROM alpine:latest
# Install required packages
RUN apk add --no-cache \
ca-certificates \
curl \
wget \
bash
# Copy the debug weed binary
COPY weed-debug /usr/bin/weed
RUN chmod +x /usr/bin/weed
# Create working directory
WORKDIR /data
# Expose common ports
EXPOSE 8080 8333 8888 9333 18080 18333 18888 19333
# Default command
CMD ["weed"]