this repo has no description

:sparkles: configuring ports for providers

Changed files
+11 -4
+2
Dockerfile
··· 6 6 # Copy source code 7 7 COPY . . 8 8 9 + EXPOSE 8000 10 + 9 11 # Install dependencies 10 12 RUN gleam deps download 11 13
+9 -4
docker-compose.yml
··· 24 24 restart: always 25 25 environment: 26 26 REDIS_CONN: valkey 27 - PROCESSOR: true 27 + PROVIDERS: "http://payment-processor-default:8080,http://payment-processor-fallback:8080" 28 28 depends_on: 29 29 - valkey 30 30 deploy: 31 31 resources: 32 32 limits: 33 - cpus: "0.6" 34 - memory: "155MB" 33 + cpus: "0.9" 34 + memory: "255MB" 35 35 36 36 api2: 37 37 <<: *app 38 38 environment: 39 39 REDIS_CONN: valkey 40 - PROCESSOR: false 40 + PROVIDERS: 41 41 container_name: api2 42 + deploy: 43 + resources: 44 + limits: 45 + cpus: "0.3" 46 + memory: "55MB" 42 47 43 48 nginx: 44 49 image: nginx:1.29.0-alpine