2021-04-09 00:22:17 +00:00
|
|
|
version: "3"
|
|
|
|
|
|
|
|
services:
|
|
|
|
database:
|
|
|
|
image: postgres:latest
|
|
|
|
restart: always
|
|
|
|
environment:
|
|
|
|
POSTGRES_PASSWORD: mitra
|
|
|
|
POSTGRES_USER: mitra
|
|
|
|
POSTGRES_DB: mitra
|
|
|
|
ports:
|
2022-03-05 12:48:30 +00:00
|
|
|
- "55432:5432"
|
2021-04-09 00:22:17 +00:00
|
|
|
volumes:
|
|
|
|
- mitra_postgres:/var/lib/postgresql/data
|
2022-08-16 11:42:37 +00:00
|
|
|
|
|
|
|
# https://github.com/farcaster-project/containers
|
|
|
|
monerod:
|
|
|
|
profiles:
|
|
|
|
- monero
|
|
|
|
image: ghcr.io/farcaster-project/containers/monerod:0.18.0.0
|
|
|
|
environment:
|
|
|
|
NETWORK: regtest
|
|
|
|
OFFLINE: --offline
|
|
|
|
DIFFICULTY: 1
|
|
|
|
ports:
|
|
|
|
- "58081:18081"
|
|
|
|
monero-wallet-rpc:
|
|
|
|
profiles:
|
|
|
|
- monero
|
|
|
|
image: ghcr.io/farcaster-project/containers/monero-wallet-rpc:0.18.0.0
|
|
|
|
environment:
|
|
|
|
MONERO_DAEMON_ADDRESS: monerod:18081
|
|
|
|
WALLET_RPC_PORT: 18083
|
|
|
|
depends_on:
|
|
|
|
- "monerod"
|
|
|
|
ports:
|
|
|
|
- "58083:18083"
|
|
|
|
|
2021-04-09 00:22:17 +00:00
|
|
|
volumes:
|
|
|
|
mitra_postgres:
|