From f707e1d53afb70d3e2871990094bfa7b186bfd88 Mon Sep 17 00:00:00 2001 From: NicolasDorier Date: Sun, 24 Sep 2017 02:01:49 +0900 Subject: [PATCH] Update docker to new version of btcpayserver --- DockerFile | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/DockerFile b/DockerFile index 27a9602..29d9f70 100644 --- a/DockerFile +++ b/DockerFile @@ -5,4 +5,4 @@ RUN cd btcpayserver && dotnet restore && cd BTCPayServer && dotnet build -c Debu EXPOSE 23001 WORKDIR /btcpayserver/BTCPayServer ENTRYPOINT ["dotnet", "bin/Debug/netcoreapp2.0/BTCPayServer.dll"] -CMD ["-testnet", "-explorercookiefile=/.cookie", "-explorerurl=https://nbxplorer-testnet-public.azurewebsites.net/", "-bind=0.0.0.0"] \ No newline at end of file +CMD ["--testnet", "--explorercookiefile=/.cookie", "--explorerurl=https://nbxplorer-testnet-public.azurewebsites.net/", "--bind=0.0.0.0"] \ No newline at end of file diff --git a/README.md b/README.md index 8bdf266..8f79d11 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Running on TestNet: ``` git clone https://github.com/btcpayserver/btcpayserver-docker cd btcpayserver-docker -docker build -t btcpay +docker build . -t btcpay docker run -p 23001:23001 -ti btcpay ```