-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathdocker-compose.yml
52 lines (49 loc) · 1.25 KB
/
docker-compose.yml
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
40
41
42
43
44
45
46
47
48
49
50
51
52
version: "3.9"
services:
strfry-nerostr-relay:
container_name: nerostr-strfry-relay
image: pluja/nerostr-strfry:latest
environment:
- API_URL=http://nerostr:8080
volumes:
- ./strfry.conf:/etc/strfry.conf
- ./nerostr_data/strfry/strfry-db:/app/strfry-db
restart: unless-stopped
monero-wallet-rpc:
container_name: nerostr-monero-wallet-rpc
env_file:
- .env
image: sethsimmons/simple-monero-wallet-rpc:latest
command: [
"--wallet-file",
"${MONERO_WALLET_FILENAME}",
"--password",
"${MONERO_WALLET_PASSWORD}",
"--rpc-bind-port",
"18083",
"--daemon-host",
"${MONERO_DAEMON_RPC_HOSTNAME}",
"--daemon-port",
"${MONERO_DAEMON_RPC_PORT}",
"--disable-rpc-login",
"--max-log-files",
"1",
"--max-log-file-size",
"1000000"
]
volumes:
- ./nerostr_data/wallet/:/home/monero/wallet/
restart: unless-stopped
nerostr:
container_name: nerostr-paywall
image: pluja/nerostr:latest
env_file:
- .env
volumes:
- ./nerostr_data/nerostr/nerostr-db:/app/nerostr_data/db
ports:
- "8089:8080"
depends_on:
- strfry-nerostr-relay
- monero-wallet-rpc
restart: unless-stopped