-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
23 lines (23 loc) · 825 Bytes
/
docker-compose.yml
File metadata and controls
23 lines (23 loc) · 825 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Example Docker Compose Config
# Start with `docker compose up`
#
# This file is not used by the claude plugin or local dev scripts.
# It's here for reference and quick testing.
# Recommended to use the `just start` and `just dev` commands instead.
#
services:
agents-observe:
build:
context: .
dockerfile: Dockerfile
container_name: agents-observe
environment:
AGENTS_OBSERVE_SERVER_PORT: "${AGENTS_OBSERVE_SERVER_PORT:-4981}"
AGENTS_OBSERVE_DB_PATH: /data/observe.db
AGENTS_OBSERVE_CLIENT_DIST_PATH: /app/client/dist
AGENTS_OBSERVE_LOG_LEVEL: "${AGENTS_OBSERVE_LOG_LEVEL:-debug}"
AGENTS_OBSERVE_RUNTIME: docker
ports:
- "${AGENTS_OBSERVE_SERVER_PORT:-4981}:${AGENTS_OBSERVE_SERVER_PORT:-4981}"
volumes:
- ${AGENTS_OBSERVE_DATA_DIR:-./data}:/data