18 lines
514 B
YAML
18 lines
514 B
YAML
services:
|
|
app:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile.dev
|
|
ports:
|
|
- "5173:5173"
|
|
volumes:
|
|
- ./src:/app/src
|
|
- ./static:/app/static
|
|
- ./svelte.config.js:/app/svelte.config.js
|
|
- ./vite.config.ts:/app/vite.config.ts
|
|
environment:
|
|
- VITE_API_URL=http://host.docker.internal:8000
|
|
- PUBLIC_TURNSTILE_SITE_KEY=1x00000000000000000000AA
|
|
#- VITE_API_URL=https://fooderapi.domandoman.xyz
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|