2017-05-13 23:21:57 +03:00
|
|
|
FROM golang:1.7
|
|
|
|
|
2017-10-31 04:38:31 +03:00
|
|
|
MAINTAINER Olaoluwa Osuntokun <lightning.engineering>
|
2017-05-13 23:21:57 +03:00
|
|
|
|
|
|
|
# Expose mainnet ports (server, rpc)
|
|
|
|
EXPOSE 8333 8334
|
|
|
|
|
|
|
|
# Expose testnet ports (server, rpc)
|
|
|
|
EXPOSE 18333 18334
|
|
|
|
|
|
|
|
# Expose simnet ports (server, rpc)
|
|
|
|
EXPOSE 18555 18556
|
|
|
|
|
|
|
|
# Expose segnet ports (server, rpc)
|
|
|
|
EXPOSE 28901 28902
|
|
|
|
|
2017-07-04 23:25:24 +03:00
|
|
|
# Grab and install the latest version of roasbeef's fork of ltcd and all
|
2017-05-13 23:21:57 +03:00
|
|
|
# related dependencies.
|
|
|
|
WORKDIR $GOPATH/src/github.com/ltcsuite/ltcd
|
|
|
|
RUN git clone https://github.com/ltcsuite/ltcd ./
|
|
|
|
RUN go get -u github.com/Masterminds/glide
|
|
|
|
RUN glide install
|
|
|
|
RUN go install . ./cmd/ltcctl ./cmd/gencerts
|
|
|
|
|
|
|
|
RUN mkdir "/rpc" "/root/.ltcd" "/root/.ltcctl"
|
|
|
|
RUN touch "/root/.ltcd/ltcd.conf"
|
|
|
|
|
|
|
|
# "ltcctl" and "lnd" to "ltcd" over docker links.
|
|
|
|
RUN "/go/bin/gencerts" --host="*" --directory="/rpc" --force
|
|
|
|
|
|
|
|
# Create a volume to house pregenerated RPC credentials. This will be
|
2017-07-04 23:25:24 +03:00
|
|
|
# shared with any lnd, btcctl containers so they can securely query ltcd's RPC
|
2017-05-13 23:21:57 +03:00
|
|
|
# server.
|
|
|
|
# You should NOT do this before certificate generation!
|
2018-02-07 06:11:11 +03:00
|
|
|
# Otherwise manually generated certificate will be overridden with shared
|
2017-05-13 23:21:57 +03:00
|
|
|
# mounted volume! For more info read dockerfile "VOLUME" documentation.
|
|
|
|
VOLUME ["/rpc"]
|
|
|
|
|
|
|
|
COPY "start-ltcctl.sh" .
|
|
|
|
COPY "start-ltcd.sh" .
|
|
|
|
|
|
|
|
RUN chmod +x start-ltcctl.sh
|
|
|
|
RUN chmod +x start-ltcd.sh
|
|
|
|
|