add registry

This commit is contained in:
2025-03-19 13:56:10 +03:00
parent a6c0c42271
commit 6e4e524bc9
2 changed files with 9 additions and 3 deletions

View File

@@ -13,7 +13,10 @@ Here are some example snippets to help you get started creating a container.
```yaml
services:
electrum:
image: bitdeals/electrum
build:
context: https://git.bitdeals.org/private/electrum.git
dockerfile: ./docker/Dockerfile
image: registry.bitdeals.org/electrum
environment:
- ELECTRUM_TESTNET=0
- ELECTRUM_API_USER=<username>
@@ -30,7 +33,7 @@ docker run -d \
-e ELECTRUM_API_USER=electrum_api_user \
-e ELECTRUM_API_PASSWORD=electrum_api_password \
-p 127.0.0.1:7000:7000 \
bitdeals/electrum
registry.bitdeals.org/electrum
```
# Parameters

View File

@@ -1,6 +1,9 @@
services:
electrum:
image: bitdeals/electrum:latest
build:
context: ./docker
dockerfile: Dockerfile
image: registry.bitdeals.org/electrum
environment:
- ELECTRUM_API_USER=electrum_api_user
- ELECTRUM_API_PASSWORD=electrum_api_password