Skip to content

Commit 63f3476

Browse files
committed
bring back
Signed-off-by: Adam Gutglick <adam@spiraldb.com>
1 parent 206c534 commit 63f3476

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
services:
2+
benchmarks-website:
3+
image: ghcr.io/vortex-data/vortex/benchmarks-website:latest
4+
ports:
5+
- "80:3000"
6+
restart: unless-stopped
7+
8+
vortex-bench-server:
9+
image: ghcr.io/vortex-data/vortex/vortex-bench-server:latest
10+
ports:
11+
- "3001:3000"
12+
environment:
13+
VORTEX_BENCH_DB: "/app/data/bench.duckdb"
14+
VORTEX_BENCH_BIND: "0.0.0.0:3000"
15+
VORTEX_BENCH_LOG: "info,vortex_bench_server=debug"
16+
env_file:
17+
- /etc/vortex-bench/secrets.env
18+
volumes:
19+
- /opt/benchmarks-website/data:/app/data
20+
restart: unless-stopped
21+
22+
watchtower:
23+
image: containrrr/watchtower
24+
volumes:
25+
- /var/run/docker.sock:/var/run/docker.sock
26+
environment:
27+
- WATCHTOWER_POLL_INTERVAL=60
28+
- WATCHTOWER_CLEANUP=true
29+
restart: unless-stopped

0 commit comments

Comments
 (0)