20 lines
310 B
YAML
20 lines
310 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
|