Skip to content

Commit

Permalink
docs: Docker CLI example
Browse files Browse the repository at this point in the history
  • Loading branch information
kroese committed May 22, 2024
1 parent 03f2eab commit d7428ea
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,13 @@ services:
ports:
- 8331:8331
volumes:
- /path/to/config/btc_rpc_proxy.toml:/etc/btc_rpc_proxy.toml
- ./btc_rpc_proxy.toml:/etc/btc_rpc_proxy.toml
```

Via Docker CLI:

```bash
docker run -it --rm -p 8331:8331 -v "./btc_rpc_proxy.toml:/etc/btc_rpc_proxy.toml" dobtc/btc-rpc-proxy
```

## About
Expand Down

0 comments on commit d7428ea

Please sign in to comment.