btcpayserver-docker/contrib/DockerFileBuildHelper
d11n 5557e224bb
Mark BlueWallet LNDhub fragment as deprecated (#917)
* Mark BlueWallet LNDhub fragment as deprecated

See https://github.com/btcpayserver/btcpayserver/issues/6070#issuecomment-2205892096

* Add deprecated flag and skip those images in README generator

* Update generated files
2024-08-29 18:18:43 +09:00
..
DockerFile.cs Make build-all-images work on arm 2018-12-02 17:06:36 +09:00
DockerFileBuildHelper.csproj add nostr relay (#584) 2022-01-18 15:37:13 +01:00
DockerInfo.cs Mark BlueWallet LNDhub fragment as deprecated (#917) 2024-08-29 18:18:43 +09:00
Extensions.cs Add script and instruction to build all the docker images by yourself 2018-12-02 13:32:01 +09:00
Image.cs Update doc 2021-05-26 13:19:00 +09:00
Program.cs Mark BlueWallet LNDhub fragment as deprecated (#917) 2024-08-29 18:18:43 +09:00
README.md Update DockerFileBuildHelper instructions (#433) 2021-01-23 08:56:25 +01:00
run.sh Add script and instruction to build all the docker images by yourself 2018-12-02 13:32:01 +09:00
StringBuilderEx.cs Make build-all-images work on arm 2018-12-02 17:06:36 +09:00
update-repo.ps1 Generate docker file table 2019-01-28 18:36:30 +09:00
update-repo.sh Generate docker file table 2019-01-28 18:36:30 +09:00

DockerFile build helper

By default, when you use docker deployment, you are fetching pre-built docker images hosted on dockerhub. While this bring the advantage that deployment is fast and reliable, this also mean that you are ultimately trusting the owner of the docker images. This repository generate a script that you can use to build all images from the sources by yourself.

How to use?

Install .NET Core SDK and run:

./run.sh

Or using Docker:

docker run -it --rm -v `pwd`:/project -w /project/contrib/DockerFileBuildHelper mcr.microsoft.com/dotnet/sdk:2.1 ./run.sh

This will build a build-all.sh file which you can run locally.

To update the README table and the build-all-images.sh script that's checked into git, replace run.sh with update-repo.sh.