-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
38 lines (37 loc) · 975 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
38 lines (37 loc) · 975 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
38
#
# WARP
# Development Environment
# Docker Compose
#
services:
warp:
image: ghcr.io/mrzzy/warp:latest-arm64
build: box
# allow access to services running within the container
network_mode: host
platform: linux/arm64
# allow access to host docker
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- "${HOME}/Documents:/home/ubuntu/Documents"
warp_amd64:
image: ghcr.io/mrzzy/warp:latest
build: box
platform: linux/amd64
# allow access to host docker
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- "${HOME}/Documents:/home/ubuntu/Documents"
sourcebot:
image: ghcr.io/sourcebot-dev/sourcebot:latest
ports:
- 7682:3000
volumes:
- "${HOME}/.config/sourcebot/config.json:/config.json"
- "sourcebot:/data"
environment:
SOURCEBOT_TELEMETRY_DISABLED: true
CONFIG_PATH: /config.json
GITHUB_TOKEN: ${GITHUB_TOKEN}
volumes:
sourcebot: