mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2026-08-17 12:46:59 +00:00
* add make test_keylock_s3 for local develop and debug * fix typos * add condition oidc:azp * docker: reuse test/s3/iam realm and iam config for keycloak dev compose Point the keycloak dev compose at the existing test/s3/iam configs instead of a parallel realm/port/key/role set. Adds one declarative realm import (seaweedfs-test-realm.json) as the single realm source and drops the duplicated iam.json/s3.json. --------- Co-authored-by: Chris Lu <chris.lu@gmail.com>
47 lines
1.3 KiB
YAML
47 lines
1.3 KiB
YAML
services:
|
|
keycloak:
|
|
image: quay.io/keycloak/keycloak:26.0.7
|
|
command: ["start-dev", "--import-realm"]
|
|
environment:
|
|
KC_BOOTSTRAP_ADMIN_USERNAME: admin
|
|
KC_BOOTSTRAP_ADMIN_PASSWORD: admin
|
|
KC_HTTP_ENABLED: "true"
|
|
KC_HOSTNAME: "http://keycloak:8080"
|
|
KC_HOSTNAME_STRICT: "false"
|
|
ports:
|
|
- "8080:8080"
|
|
volumes:
|
|
- ../../test/s3/iam/seaweedfs-test-realm.json:/opt/keycloak/data/import/seaweedfs-test-realm.json:ro
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "exec 3<>/dev/tcp/localhost/8080"]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 5
|
|
start_period: 60s
|
|
|
|
s3:
|
|
image: chrislusf/seaweedfs:local
|
|
command:
|
|
- -v=9
|
|
- server
|
|
- -ip=s3
|
|
- -filer
|
|
- -master.volumeSizeLimitMB=16
|
|
- -volume
|
|
- -volume.max=0
|
|
- -volume.preStopSeconds=1
|
|
- -s3
|
|
- -s3.port=8333
|
|
- -s3.config=/etc/seaweedfs/s3_config.json
|
|
- -s3.iam.config=/etc/seaweedfs/iam_config.json
|
|
environment:
|
|
WEED_MASTER_VOLUME_GROWTH_COPY_OTHER: 1
|
|
volumes:
|
|
- ../../test/s3/iam/test_config.json:/etc/seaweedfs/s3_config.json:ro
|
|
- ../../test/s3/iam/iam_config_docker.json:/etc/seaweedfs/iam_config.json:ro
|
|
ports:
|
|
- "8333:8333"
|
|
depends_on:
|
|
keycloak:
|
|
condition: service_healthy
|