deploy: clean up docker-compose configurations
Remove unnecessary service definitions and debug logging configuration from docker-compose files across all deployment environments.
This commit is contained in:
parent
305e1b3f2e
commit
4b8df60e83
5 changed files with 0 additions and 8 deletions
|
|
@ -23,7 +23,6 @@ services:
|
|||
restart: unless-stopped
|
||||
environment:
|
||||
- LOG_LEVEL=info
|
||||
- FETCHML_NATIVE_LIBS=1
|
||||
# Load secure environment variables
|
||||
- JWT_SECRET_FILE=/app/.env.secure
|
||||
healthcheck:
|
||||
|
|
@ -99,7 +98,6 @@ services:
|
|||
restart: unless-stopped
|
||||
environment:
|
||||
- LOG_LEVEL=info
|
||||
- FETCHML_NATIVE_LIBS=1
|
||||
- MINIO_ROOT_USER=${MINIO_ROOT_USER:-minioadmin}
|
||||
- MINIO_ROOT_PASSWORD=${MINIO_ROOT_PASSWORD:-minioadmin123}
|
||||
- REDIS_PASSWORD=${REDIS_PASSWORD}
|
||||
|
|
|
|||
|
|
@ -14,7 +14,6 @@ services:
|
|||
- ../configs/api/dev.yaml:/app/configs/api/dev.yaml
|
||||
environment:
|
||||
- LOG_LEVEL=info
|
||||
- FETCHML_NATIVE_LIBS=1
|
||||
depends_on:
|
||||
redis:
|
||||
condition: service_healthy
|
||||
|
|
@ -39,7 +38,6 @@ services:
|
|||
- /sys/fs/cgroup:/sys/fs/cgroup:rw
|
||||
environment:
|
||||
- LOG_LEVEL=info
|
||||
- FETCHML_NATIVE_LIBS=1
|
||||
- MINIO_ROOT_USER=minioadmin
|
||||
- MINIO_ROOT_PASSWORD=minioadmin123
|
||||
depends_on:
|
||||
|
|
|
|||
|
|
@ -49,7 +49,6 @@ services:
|
|||
command: ["/bin/sh", "-c", "mkdir -p /data/experiments /data/active/datasets /data/active/snapshots && exec /usr/local/bin/api-server -config /app/configs/api/dev.yaml"]
|
||||
environment:
|
||||
- LOG_LEVEL=info
|
||||
- FETCHML_NATIVE_LIBS=1
|
||||
healthcheck:
|
||||
test: [ "CMD", "curl", "-f", "http://localhost:9101/health" ]
|
||||
interval: 10s
|
||||
|
|
|
|||
|
|
@ -35,7 +35,6 @@ services:
|
|||
restart: unless-stopped
|
||||
environment:
|
||||
- LOG_LEVEL=info
|
||||
- FETCHML_NATIVE_LIBS=1
|
||||
healthcheck:
|
||||
test: [ "CMD", "curl", "-f", "http://localhost:9101/health" ]
|
||||
interval: 30s
|
||||
|
|
@ -72,7 +71,6 @@ services:
|
|||
restart: unless-stopped
|
||||
environment:
|
||||
- LOG_LEVEL=info
|
||||
- FETCHML_NATIVE_LIBS=1
|
||||
- AWS_ACCESS_KEY_ID=${AWS_ACCESS_KEY_ID}
|
||||
- AWS_SECRET_ACCESS_KEY=${AWS_SECRET_ACCESS_KEY}
|
||||
- AWS_SESSION_TOKEN=${AWS_SESSION_TOKEN}
|
||||
|
|
|
|||
|
|
@ -26,7 +26,6 @@ services:
|
|||
environment:
|
||||
- LOG_LEVEL=debug
|
||||
- REDIS_ADDR=redis:6379
|
||||
- FETCHML_NATIVE_LIBS=0
|
||||
volumes:
|
||||
- ../../:/app
|
||||
- api-logs:/logs
|
||||
|
|
|
|||
Loading…
Reference in a new issue