-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.example.yml
More file actions
35 lines (31 loc) · 909 Bytes
/
docker-compose.example.yml
File metadata and controls
35 lines (31 loc) · 909 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
services:
autotune:
image: autotune:v0.6
container_name: autotune
volumes:
- /mnt/bitcoin/hamsandwich/autotune/data:/app/data
- /mnt/bitcoin/hamsandwich/autotune/log:/app/log
- /mnt/bitcoin/hamsandwich/autotune/config:/app/config
- /mnt/bitcoin/hamsandwich/charge/config.toml:/app/chargelnd/config.toml
- /mnt/bitcoin/hamsandwich/autotune/bos:/root/.bos
- /var/run/docker.sock:/var/run/docker.sock
command: ["python", "-u", "main.py", "--apply"]
networks:
- lightning
htlc-dryrun:
image: autotune:v0.6
container_name: htlc-dryrun
volumes:
- /mnt/bitcoin/hamsandwich/autotune/log:/app/log
- /mnt/bitcoin/hamsandwich/autotune/config:/app/config
command: [
"/bin/bash",
"-c",
"python -u htlc.py"
]
networks:
- lightning
restart: "no"
networks:
lightning:
external: true