Files
mib-payment-verify/compose.yml
Shihaam Abdul Rahman ca632749d4
Some checks failed
Build and Push Docker Images / Build and Push Docker Images (push) Failing after 2m24s
fix docker stuff
2026-02-15 14:03:02 +05:00

27 lines
568 B
YAML

services:
keepalive:
env_file: .env
build:
context: .
dockerfile: .build/prod/keepalive.Dockerfile
environment:
- COOKIE_SERVER=http://cookieserver:5000
depends_on:
- cookieserver
cookieserver:
env_file: .env
build:
context: .
dockerfile: .build/prod/cookieserver.Dockerfile
api:
env_file: .env
build:
context: .
dockerfile: .build/prod/api.Dockerfile
environment:
- COOKIE_SERVER=http://cookieserver:5000
depends_on:
- cookieserver
ports:
- 5000:5000