rename(phase 3): compose/DB/infra + stray code refs capakraken → nexus (#62)
CI / Lint (push) Successful in 3m4s
CI / Typecheck (push) Successful in 3m6s
CI / Architecture Guardrails (push) Successful in 3m8s
CI / Assistant Split Regression (push) Successful in 3m48s
CI / Build (push) Has been cancelled
CI / E2E Tests (push) Has been cancelled
CI / Fresh-Linux Docker Deploy (push) Has been cancelled
CI / Release Images (push) Has been cancelled
CI / Unit Tests (push) Has been cancelled
CI / Lint (push) Successful in 3m4s
CI / Typecheck (push) Successful in 3m6s
CI / Architecture Guardrails (push) Successful in 3m8s
CI / Assistant Split Regression (push) Successful in 3m48s
CI / Build (push) Has been cancelled
CI / E2E Tests (push) Has been cancelled
CI / Fresh-Linux Docker Deploy (push) Has been cancelled
CI / Release Images (push) Has been cancelled
CI / Unit Tests (push) Has been cancelled
rename(phase 3): compose/DB/infra + stray code refs capakraken → nexus (#62) Co-authored-by: Hartmut Nörenberg <hn@hartmut-noerenberg.com> Co-committed-by: Hartmut Nörenberg <hn@hartmut-noerenberg.com>
This commit was merged in pull request #62.
This commit is contained in:
+12
-12
@@ -1,4 +1,4 @@
|
||||
name: capakraken-prod
|
||||
name: nexus-prod
|
||||
|
||||
services:
|
||||
postgres:
|
||||
@@ -7,8 +7,8 @@ services:
|
||||
ports:
|
||||
- "127.0.0.1:${POSTGRES_PORT:-5432}:5432"
|
||||
environment:
|
||||
POSTGRES_DB: capakraken
|
||||
POSTGRES_USER: capakraken
|
||||
POSTGRES_DB: nexus
|
||||
POSTGRES_USER: nexus
|
||||
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:?set POSTGRES_PASSWORD}
|
||||
command: >
|
||||
postgres
|
||||
@@ -18,9 +18,9 @@ services:
|
||||
-c log_line_prefix='%t [%p] %u@%d '
|
||||
-c log_min_duration_statement=1000
|
||||
volumes:
|
||||
- capakraken_prod_pgdata:/var/lib/postgresql/data
|
||||
- nexus_prod_pgdata:/var/lib/postgresql/data
|
||||
healthcheck:
|
||||
test: ["CMD-SHELL", "pg_isready -U capakraken -d capakraken"]
|
||||
test: ["CMD-SHELL", "pg_isready -U nexus -d nexus"]
|
||||
interval: 10s
|
||||
timeout: 5s
|
||||
retries: 5
|
||||
@@ -34,7 +34,7 @@ services:
|
||||
- "127.0.0.1:${REDIS_PORT:-6379}:6379"
|
||||
command: redis-server --maxmemory 256mb --maxmemory-policy allkeys-lru --requirepass ${REDIS_PASSWORD}
|
||||
volumes:
|
||||
- capakraken_prod_redis:/data
|
||||
- nexus_prod_redis:/data
|
||||
healthcheck:
|
||||
test: ["CMD", "redis-cli", "-a", "${REDIS_PASSWORD}", "--no-auth-warning", "ping"]
|
||||
interval: 10s
|
||||
@@ -49,7 +49,7 @@ services:
|
||||
env_file:
|
||||
- .env.production
|
||||
environment:
|
||||
DATABASE_URL: postgresql://capakraken:${POSTGRES_PASSWORD:?set POSTGRES_PASSWORD}@postgres:5432/capakraken
|
||||
DATABASE_URL: postgresql://nexus:${POSTGRES_PASSWORD:?set POSTGRES_PASSWORD}@postgres:5432/nexus
|
||||
REDIS_URL: redis://:${REDIS_PASSWORD}@redis:6379
|
||||
RATE_LIMIT_BACKEND: ${RATE_LIMIT_BACKEND:-redis}
|
||||
depends_on:
|
||||
@@ -67,7 +67,7 @@ services:
|
||||
env_file:
|
||||
- .env.production
|
||||
environment:
|
||||
DATABASE_URL: postgresql://capakraken:${POSTGRES_PASSWORD:?set POSTGRES_PASSWORD}@postgres:5432/capakraken
|
||||
DATABASE_URL: postgresql://nexus:${POSTGRES_PASSWORD:?set POSTGRES_PASSWORD}@postgres:5432/nexus
|
||||
REDIS_URL: redis://:${REDIS_PASSWORD}@redis:6379
|
||||
RATE_LIMIT_BACKEND: ${RATE_LIMIT_BACKEND:-redis}
|
||||
NEXT_PUBLIC_SENTRY_DSN: ${NEXT_PUBLIC_SENTRY_DSN:-}
|
||||
@@ -84,7 +84,7 @@ services:
|
||||
start_period: 30s
|
||||
|
||||
volumes:
|
||||
capakraken_prod_pgdata:
|
||||
name: capakraken_prod_pgdata
|
||||
capakraken_prod_redis:
|
||||
name: capakraken_prod_redis
|
||||
nexus_prod_pgdata:
|
||||
name: nexus_prod_pgdata
|
||||
nexus_prod_redis:
|
||||
name: nexus_prod_redis
|
||||
|
||||
Reference in New Issue
Block a user