mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-30 04:04:21 +01:00
11 lines
352 B
Plaintext
11 lines
352 B
Plaintext
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"] |