From 52b6eb46f142f77797e3fc92a3bce0438ded448b Mon Sep 17 00:00:00 2001 From: Guillaume A Date: Sun, 20 Nov 2022 13:04:58 +0800 Subject: [PATCH] Update Docker documentation towards building your own image As DockerHub image non existant, update the documentation for Compose to build your own image instead. --- docs/using_docker.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/using_docker.md b/docs/using_docker.md index 0809abc1..6cd41b9d 100644 --- a/docs/using_docker.md +++ b/docs/using_docker.md @@ -93,7 +93,7 @@ services: btcd: container_name: btcd hostname: btcd - image: btcsuite/btcd:latest + build: https://github.com/btcsuite/btcd.git#master restart: unless-stopped volumes: - btcd-data:/root/.btcd @@ -115,7 +115,7 @@ services: btcd: container_name: btcd hostname: btcd - image: btcsuite/btcd:latest + build: https://github.com/btcsuite/btcd.git#master restart: unless-stopped volumes: - btcd-data:/root/.btcd @@ -142,7 +142,7 @@ services: btcd: container_name: btcd hostname: btcd - image: btcsuite/btcd:latest + build: https://github.com/btcsuite/btcd.git#master restart: unless-stopped volumes: - btcd-data:/root/.btcd