mirror of
https://github.com/logos-blockchain/logos-blockchain-pocs.git
synced 2026-02-09 15:43:23 +00:00
21 lines
480 B
YAML
21 lines
480 B
YAML
version: '3.9'
|
|
|
|
services:
|
|
proxy:
|
|
image: nginx
|
|
container_name: proxy
|
|
extra_hosts:
|
|
- 'host.docker.internal:host-gateway'
|
|
volumes:
|
|
- "../proxy:/etc/nginx/templates"
|
|
environment:
|
|
BACK_PROXY_PASS: ${BACK_PROXY_PASS:-http://backend:4000}
|
|
FRONT_PROXY_PASS: ${FRONT_PROXY_PASS:-http://frontend:3000}
|
|
ports:
|
|
- target: 80
|
|
published: 80
|
|
- target: 8080
|
|
published: 8080
|
|
- target: 8081
|
|
published: 8081
|