-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
40 lines (38 loc) · 1.44 KB
/
Copy pathdocker-compose.yml
File metadata and controls
40 lines (38 loc) · 1.44 KB
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
38
39
40
# VibeSpace — team deployment
#
# docker compose up -d
# docker compose logs | grep password # first-boot generated password
#
# To pick your own password, uncomment VIBESPACE_PASSWORD below.
services:
vibespace:
build: .
container_name: vibespace
restart: unless-stopped
ports:
- "3456:3456"
environment:
# - VIBESPACE_PASSWORD=change-me # omit → random password on first boot (see logs)
- NO_AUTO_UPDATE=1
# - CLAUDE_CMD=claude # override CLI paths if needed
# Company object storage (per-user prefix) — enables the Mounts manager.
# See docs/design-collaboration.md for the IAM scoping convention.
# - VIBESPACE_S3_ENDPOINT=https://s3.company.internal
# - VIBESPACE_S3_BUCKET=company-workspace
# - VIBESPACE_S3_PREFIX=users/alice
# - VIBESPACE_S3_ACCESS_KEY=…
# - VIBESPACE_S3_SECRET_KEY=…
volumes:
- vibespace-data:/app/data # sessions, layouts, settings, auth
- vibespace-claude:/home/vibe/.claude # claude credentials + transcripts
- ./workspace:/workspace # your projects (bind-mount anything)
# Shared team storage examples (see docs/design-collaboration.md):
# - /mnt/nfs/team-projects:/workspace
# S3 mounts (rclone/FUSE) additionally require:
# devices:
# - /dev/fuse
# cap_add:
# - SYS_ADMIN
volumes:
vibespace-data:
vibespace-claude: