setup and mock fixes

This commit is contained in:
master
2026-02-21 20:14:23 +02:00
parent 1edce73165
commit a29f438f53
29 changed files with 1624 additions and 721 deletions

View File

@@ -12,8 +12,8 @@
# This provides:
# - PostgreSQL 18.1 on 127.1.1.1:5432 (db.stella-ops.local)
# - Valkey 9.0.1 on 127.1.1.2:6379 (cache.stella-ops.local)
# - SeaweedFS (S3) on 127.1.1.3:8080 (s3.stella-ops.local)
# - Rekor v2 (tiles) on 127.1.1.4:3322 (rekor.stella-ops.local)
# - SeaweedFS (S3) on 127.1.1.3:8333 (s3.stella-ops.local)
# - Rekor v2 (tiles) on 127.1.1.4:3322 (rekor.stella-ops.local, opt-in sigstore profile)
# - Zot (OCI registry) on 127.1.1.5:80 (registry.stella-ops.local)
# =============================================================================
@@ -56,13 +56,13 @@ services:
image: chrislusf/seaweedfs:latest
container_name: stellaops-dev-rustfs
restart: unless-stopped
command: ["server", "-s3", "-s3.port=8080", "-dir=/data"]
command: ["server", "-s3", "-s3.port=8333", "-volume.port=8080", "-dir=/data"]
volumes:
- rustfs-data:/data
ports:
- "127.1.1.3:${RUSTFS_PORT:-8080}:8080"
- "127.1.1.3:${RUSTFS_PORT:-8333}:8333"
healthcheck:
test: ["CMD", "wget", "-qO-", "http://localhost:8080/status"]
test: ["CMD", "wget", "-qO-", "http://localhost:8333/"]
interval: 30s
timeout: 10s
retries: 3
@@ -71,6 +71,7 @@ services:
image: ${REKOR_TILES_IMAGE:-ghcr.io/sigstore/rekor-tiles:latest}
container_name: stellaops-dev-rekor
restart: unless-stopped
profiles: ["sigstore"]
volumes:
- rekor-tiles-data:/var/lib/rekor-tiles
ports: