Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions internal/localmode/assets/docker-compose.template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,12 @@ services:
condition: service_healthy
dynamodb:
condition: service_started
# Mount docker socket to allow agent worker launch (local mode only).
# WARNING: This grants the server container permission to run any container
# with the server's privileges. Only safe in local development on your machine.
Comment on lines +76 to +78
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- volcano-storage:/app/local-storage
environment:
# Core settings
LOCAL_MODE: "true"
Expand Down Expand Up @@ -124,8 +130,6 @@ services:
VOLCANO_FIRST_PARTY_DEVICE_CLIENT_ID: ${VOLCANO_FIRST_PARTY_DEVICE_CLIENT_ID:-}
VOLCANO_FIRST_PARTY_AUTH_EMAIL: ${VOLCANO_FIRST_PARTY_AUTH_EMAIL:-}
VOLCANO_FIRST_PARTY_AUTH_PASSWORD_HASH: ${VOLCANO_FIRST_PARTY_AUTH_PASSWORD_HASH:-}
volumes:
- volcano-storage:/app/local-storage
ports:
- "8000:8000"
- "8002:8002"
Expand Down