mirror of
https://github.com/Routstr/routstrd.git
synced 2026-07-30 15:46:14 +00:00
- Add Dockerfile, docker-compose.yml, and .dockerignore for Bun dev container - Fix sdkLogger to use logger.warn instead of logger.log for warnings - Add proper warn method to logger (writes to file instead of console) - Use console.log for daemon startup messages to keep them visible - Update cashu-ts getDecodedToken call with explicit well-known-pubkeys - Use proof.amount.toNumber() for updated cashu-ts Amount type
15 lines
221 B
YAML
15 lines
221 B
YAML
services:
|
|
bun:
|
|
build: .
|
|
container_name: routstrd-bun
|
|
working_dir: /app
|
|
volumes:
|
|
- .:/app
|
|
- bun_home:/root/.bun
|
|
stdin_open: true
|
|
tty: true
|
|
command: /bin/bash
|
|
|
|
volumes:
|
|
bun_home:
|