fedimovies/docker-compose.yaml

44 lines
924 B
YAML
Raw Permalink Normal View History

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
# https://github.com/farcaster-project/containers
monerod:
profiles:
- monero
2022-12-12 21:24:05 +00:00
image: ghcr.io/farcaster-project/containers/monerod:0.18.1.2
environment:
NETWORK: regtest
OFFLINE: --offline
DIFFICULTY: 1
ports:
- "58081:18081"
monero-wallet-rpc:
profiles:
- monero
2022-12-12 21:24:05 +00:00
image: ghcr.io/farcaster-project/containers/monero-wallet-rpc:0.18.1.2
environment:
MONERO_DAEMON_ADDRESS: monerod:18081
WALLET_RPC_PORT: 18083
depends_on:
- "monerod"
ports:
- "58083:18083"
volumes:
- monero_wallets:/wallets
2021-04-09 00:22:17 +00:00
volumes:
mitra_postgres:
monero_wallets: