-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhyperv.yaml
More file actions
29 lines (29 loc) · 881 Bytes
/
hyperv.yaml
File metadata and controls
29 lines (29 loc) · 881 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
services:
logger:
binary: "/bin/bash"
args: ["./tests/logger.sh"]
workdir: "/Users/masutanoakira/projs/hyperV"
auto_restart: true
worker:
binary: "/bin/bash"
args: ["./tests/worker.sh"]
workdir: "/Users/masutanoakira/projs/hyperV"
auto_restart: false
crasher:
binary: "/bin/bash"
args: ["./tests/crasher.sh"]
workdir: "/Users/masutanoakira/projs/hyperV"
auto_restart: true
surrealdb:
binary: "/bin/bash"
args:
- "-lc"
- "surreal start --bind $SURREAL_HOST:$SURREAL_PORT rocksdb:$SURREAL_STORAGE_PATH --log $SURREAL_LOG_LEVEL --user $SURREAL_USER --password $SURREAL_PASSWORD"
env:
SURREAL_HOST: "0.0.0.0"
SURREAL_PORT: "8000"
SURREAL_STORAGE_PATH: "/tmp/surreal_data"
SURREAL_LOG_LEVEL: "info"
SURREAL_USER: "root"
SURREAL_PASSWORD: "secret"
auto_restart: true