We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68628b4 commit 2f14303Copy full SHA for 2f14303
1 file changed
benchmarks-website/docker-compose.yml
@@ -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
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
21
22
+ watchtower:
23
+ image: containrrr/watchtower
24
25
+ - /var/run/docker.sock:/var/run/docker.sock
26
27
+ - WATCHTOWER_POLL_INTERVAL=60
28
+ - WATCHTOWER_CLEANUP=true
29
0 commit comments