Skip to content

Commit

Permalink
add wallet to docker compose
Browse files Browse the repository at this point in the history
  • Loading branch information
callebtc committed Sep 18, 2023
1 parent 159532d commit fb2d484
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 32 deletions.
16 changes: 0 additions & 16 deletions Dockerfile.mint

This file was deleted.

16 changes: 0 additions & 16 deletions Dockerfile.wallet

This file was deleted.

23 changes: 23 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
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"]

0 comments on commit fb2d484

Please sign in to comment.