15 lines
407 B
YAML
15 lines
407 B
YAML
|
|
services:
|
||
|
|
yg-ft-frontend:
|
||
|
|
build:
|
||
|
|
context: .
|
||
|
|
dockerfile: Dockerfile
|
||
|
|
image: yg-ft-frontend:latest
|
||
|
|
container_name: yg-ft-frontend
|
||
|
|
ports:
|
||
|
|
- "6801:80"
|
||
|
|
environment:
|
||
|
|
# Change this if the backend is deployed somewhere else.
|
||
|
|
API_PROXY_PASS: "http://host.docker.internal:7861"
|
||
|
|
extra_hosts:
|
||
|
|
- "host.docker.internal:host-gateway"
|
||
|
|
restart: unless-stopped
|