Files
asset_helper/backend/docker-compose.yml

28 lines
445 B
YAML

version: '3.8'
services:
nginx:
image: nginx:1.25-alpine
ports:
- "80:80"
volumes:
- ./nginx/nginx.conf:/etc/nginx/nginx.conf:ro
depends_on:
- gateway
gateway:
build:
context: ./gateway
ports:
- "8080:8080"
environment:
- GO_ENV=production
user-svc:
build:
context: ./services/user-svc
ports:
- "50051:50051"
environment:
- GO_ENV=production