diff --git a/Jenkinsfile b/Jenkinsfile index 8ef36f4..a562d0d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -54,11 +54,18 @@ services: file-system-server: image: ${CI_REGISTRY}/${DOCKER_IMAGE}:latest container_name: file-system-server - ports: - - "8991:8080" + network_mode: host restart: unless-stopped environment: - GIN_MODE=release + - SERVER_PORT=8080 + - RUSTFS_ENDPOINT_URL=http://192.168.1.154:9000 + - RUSTFS_ACCESS_KEY_ID=minioadmin + - RUSTFS_SECRET_ACCESS_KEY=minioadmin + - RUSTFS_REGION=us-east-1 + - AUTH_API_KEY=file-system-api-key-2024 + - GRPC_AUTH_ADDR=192.168.1.154:50051 + - OTEL_ENDPOINT=192.168.1.154:4316 volumes: - ./logs:/app/logs DCOF