17 lines
466 B
YAML
17 lines
466 B
YAML
services:
|
|
preview-app:
|
|
container_name: ai-code-app-preview
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile.preview
|
|
ports:
|
|
- "${PREVIEW_APP_PORT:-4173}:5173"
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
environment:
|
|
PORT: 5173
|
|
APP_DIST_DIR: /tmp/ai-code-test-app-dist
|
|
WORK_SERVER_URL: ${WORK_SERVER_URL:-http://host.docker.internal:3100}
|
|
VITE_DISABLE_APP_UPDATE: "true"
|
|
restart: unless-stopped
|