14 lines
284 B
YAML
14 lines
284 B
YAML
services:
|
|
web:
|
|
build:
|
|
context: .
|
|
args:
|
|
- VITE_SERVER_URL=${VITE_SERVER_URL}
|
|
environment:
|
|
- ALLOWED_ORIGINS=${ALLOWED_ORIGINS:-}
|
|
ports:
|
|
- "3000:3000"
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
restart: unless-stopped
|