-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
37 lines (35 loc) · 840 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
37 lines (35 loc) · 840 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
services:
devduck:
build:
context: .
dockerfile: Dockerfile
args:
DEVDUCK_VERSION: "0.0.0+docker"
image: devduck:local
container_name: devduck
stdin_open: true
tty: true
restart: unless-stopped
ports:
- "10000:10000" # agentcore proxy
- "10001:10001" # websocket
env_file:
- .env
environment:
DEVDUCK_AUTO_START_SERVERS: "true"
DEVDUCK_ENABLE_WS: "true"
DEVDUCK_ENABLE_ZENOH: "true"
BYPASS_TOOL_CONSENT: "true"
volumes:
- devduck-data:/home/duck/.devduck
- devduck-tmp:/tmp/devduck
# Slim release variant (uncomment to use PyPI image)
# devduck-slim:
# build:
# context: .
# dockerfile: Dockerfile.slim
# image: devduck:slim
# profiles: ["slim"]
volumes:
devduck-data:
devduck-tmp: