fooder-app/docker-compose.yml
2026-04-01 23:51:16 +02:00

17 lines
455 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
#- VITE_API_URL=https://fooderapi.domandoman.xyz
extra_hosts:
- "host.docker.internal:host-gateway"