Phase 0: fix typecheck, format, build; remove stray emit; pin port via env
CI / Lint, typecheck, test, build (push) Failing after 22s
CI / Lint, typecheck, test, build (push) Failing after 22s
This commit is contained in:
+11
-11
@@ -20,12 +20,12 @@ services:
|
||||
POSTGRES_PASSWORD: kerbal
|
||||
POSTGRES_DB: kerbal_rt
|
||||
ports:
|
||||
- "5432:5432"
|
||||
- '5432:5432'
|
||||
volumes:
|
||||
- postgres-data:/var/lib/postgresql/data
|
||||
- ./init-sql:/docker-entrypoint-initdb.d
|
||||
healthcheck:
|
||||
test: ["CMD-SHELL", "pg_isready -U kerbal -d kerbal_rt"]
|
||||
test: ['CMD-SHELL', 'pg_isready -U kerbal -d kerbal_rt']
|
||||
interval: 5s
|
||||
timeout: 5s
|
||||
retries: 10
|
||||
@@ -33,13 +33,13 @@ services:
|
||||
redis:
|
||||
image: redis:7.4-alpine
|
||||
restart: unless-stopped
|
||||
command: ["redis-server", "--appendonly", "yes"]
|
||||
command: ['redis-server', '--appendonly', 'yes']
|
||||
ports:
|
||||
- "6379:6379"
|
||||
- '6379:6379'
|
||||
volumes:
|
||||
- redis-data:/data
|
||||
healthcheck:
|
||||
test: ["CMD", "redis-cli", "ping"]
|
||||
test: ['CMD', 'redis-cli', 'ping']
|
||||
interval: 5s
|
||||
timeout: 3s
|
||||
retries: 10
|
||||
@@ -47,17 +47,17 @@ services:
|
||||
minio:
|
||||
image: minio/minio:RELEASE.2024-09-13T20-26-02Z
|
||||
restart: unless-stopped
|
||||
command: ["server", "/data", "--console-address", ":9001"]
|
||||
command: ['server', '/data', '--console-address', ':9001']
|
||||
environment:
|
||||
MINIO_ROOT_USER: kerbal
|
||||
MINIO_ROOT_PASSWORD: kerbal-secret-change-me
|
||||
ports:
|
||||
- "9000:9000" # S3 API
|
||||
- "9001:9001" # Web console
|
||||
- '9000:9000' # S3 API
|
||||
- '9001:9001' # Web console
|
||||
volumes:
|
||||
- minio-data:/data
|
||||
healthcheck:
|
||||
test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"]
|
||||
test: ['CMD', 'curl', '-f', 'http://localhost:9000/minio/health/live']
|
||||
interval: 10s
|
||||
timeout: 5s
|
||||
retries: 5
|
||||
@@ -66,12 +66,12 @@ services:
|
||||
pgadmin:
|
||||
image: dpage/pgadmin4:8
|
||||
restart: unless-stopped
|
||||
profiles: ["dev"]
|
||||
profiles: ['dev']
|
||||
environment:
|
||||
PGADMIN_DEFAULT_EMAIL: admin@kerbal.local
|
||||
PGADMIN_DEFAULT_PASSWORD: admin
|
||||
ports:
|
||||
- "5050:80"
|
||||
- '5050:80'
|
||||
depends_on:
|
||||
postgres:
|
||||
condition: service_healthy
|
||||
|
||||
Reference in New Issue
Block a user