Update docker to new version of btcpayserver

This commit is contained in:
NicolasDorier 2017-09-24 02:01:49 +09:00
parent 814eb6bd59
commit f707e1d53a
2 changed files with 2 additions and 2 deletions

View File

@ -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"]
CMD ["--testnet", "--explorercookiefile=/.cookie", "--explorerurl=https://nbxplorer-testnet-public.azurewebsites.net/", "--bind=0.0.0.0"]

View File

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