mirror of
https://github.com/aljazceru/nutshell.git
synced 2025-12-20 10:34:20 +01:00
24 lines
498 B
YAML
24 lines
498 B
YAML
version: "3"
|
|
services:
|
|
mint:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
container_name: mint
|
|
ports:
|
|
- "3338:3338"
|
|
command: ["poetry", "run", "mint", "--port", "3338", "--host", "0.0.0.0"]
|
|
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"]
|