mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-04 01:53:52 +01:00
11 lines
No EOL
352 B
Text
11 lines
No EOL
352 B
Text
FROM microsoft/aspnetcore:2.0.0
|
|
|
|
WORKDIR /app
|
|
COPY "bin/Release/netcoreapp2.0/publish" .
|
|
|
|
ENV BTCPAY_POSTGRES="User ID=postgres;Host=postgres;Port=5432;Database=btcpayserver"
|
|
ENV BTCPAY_NETWORK="testnet"
|
|
ENV BTCPAY_EXPLORERURL="https://nbxplorer-testnet-public.azurewebsites.net/"
|
|
ENV BTCPAY_BIND="0.0.0.0:80"
|
|
|
|
ENTRYPOINT ["dotnet", "BTCPayServer.dll"] |