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 ```