Files
nutshell/docker-compose.yaml
2023-11-29 17:55:18 -03:00

28 lines
581 B
YAML

version: "3"
services:
mint:
build:
context: .
dockerfile: Dockerfile
container_name: mint
ports:
- "3338:3338"
environment:
- MINT_LIGHTNING_BACKEND=FakeWallet
- MINT_LISTEN_HOST=0.0.0.0
- MINT_LISTEN_PORT=3338
command: ["poetry", "run", "mint"]
wallet:
build:
context: .
dockerfile: Dockerfile
container_name: wallet
ports:
- "4448:4448"
depends_on:
- mint
environment:
- MINT_URL=http://mint:3338
- API_HOST=0.0.0.0
command: ["poetry", "run", "cashu", "-d"]