forked from steel-dev/steel-browser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
39 lines (36 loc) · 813 Bytes
/
docker-compose.yml
File metadata and controls
39 lines (36 loc) · 813 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
39
services:
api:
image: ghcr.io/steel-dev/steel-browser-api:latest
ports:
- "3000:3000"
- "9223:9223"
volumes:
- logs:/data/logs
- exports:/tmp/steel-browser-exports
- ./.cache:/app/.cache
environment:
- DOMAIN=${DOMAIN:-localhost:3000}
- CDP_DOMAIN=${CDP_DOMAIN:-localhost:9223}
- LOG_STORAGE_ENABLED=true
- LOG_STORAGE_PATH=/data/logs/browser-logs.duckdb
networks:
- steel-network
ui:
image: ghcr.io/steel-dev/steel-browser-ui:latest
ports:
- "5173:80"
environment:
- API_URL=${API_URL:-http://api:3000}
depends_on:
- api
networks:
- steel-network
networks:
steel-network:
name: steel-network
driver: bridge
volumes:
logs:
driver: local
exports:
driver: local