mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-06-07 07:55:16 +02:00
31 lines
828 B
YAML
31 lines
828 B
YAML
services:
|
|
workspace:
|
|
build:
|
|
context: .
|
|
dockerfile: .devcontainer/Dockerfile
|
|
command: sleep infinity
|
|
depends_on:
|
|
postgres:
|
|
condition: service_healthy
|
|
redis:
|
|
condition: service_healthy
|
|
minio:
|
|
condition: service_healthy
|
|
environment:
|
|
PIP_DISABLE_PIP_VERSION_CHECK: "1"
|
|
PYTHONUNBUFFERED: "1"
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
init: true
|
|
networks:
|
|
- app-network
|
|
volumes:
|
|
- .:/workspaces/dograh:cached
|
|
- dograh-venv:/workspaces/dograh/venv
|
|
- dograh-ui-node_modules:/workspaces/dograh/ui/node_modules
|
|
- dograh-ts-validator-node_modules:/workspaces/dograh/api/mcp_server/ts_validator/node_modules
|
|
|
|
volumes:
|
|
dograh-venv:
|
|
dograh-ui-node_modules:
|
|
dograh-ts-validator-node_modules:
|