add more comments
This commit is contained in:
parent
6649726598
commit
0a5b6bbe70
|
@ -2,7 +2,10 @@ FROM node:16.1.0-alpine
|
||||||
|
|
||||||
WORKDIR /usr/app
|
WORKDIR /usr/app
|
||||||
|
|
||||||
|
# schedule critical checks to run every 5 minutes (any failures will disable server)
|
||||||
RUN echo '*/5 * * * * /usr/app/cli/run critical > /dev/stdout' >> /etc/crontabs/root
|
RUN echo '*/5 * * * * /usr/app/cli/run critical > /dev/stdout' >> /etc/crontabs/root
|
||||||
|
|
||||||
|
# schedule extended checks to run on every hour (optional checks, report only)
|
||||||
RUN echo '0 * * * * /usr/app/cli/run extended > /dev/stdout' >> /etc/crontabs/root
|
RUN echo '0 * * * * /usr/app/cli/run extended > /dev/stdout' >> /etc/crontabs/root
|
||||||
|
|
||||||
COPY package.json .
|
COPY package.json .
|
||||||
|
@ -12,4 +15,10 @@ COPY cli cli
|
||||||
|
|
||||||
EXPOSE 3100
|
EXPOSE 3100
|
||||||
ENV NODE_ENV production
|
ENV NODE_ENV production
|
||||||
|
|
||||||
|
# command consists of 3 parts:
|
||||||
|
# 1. starting crond
|
||||||
|
# 2. aliasing siasky.net and account.siasky.net with current server ip so health checks
|
||||||
|
# test portal end-to-end on prod domain (important for testing ssl certificates)
|
||||||
|
# 3. running api service
|
||||||
CMD [ "sh", "-c", "crond ; echo $(node src/whatismyip.js) siasky.net account.siasky.net >> /etc/hosts ; node --max-http-header-size=64000 src/index.js" ]
|
CMD [ "sh", "-c", "crond ; echo $(node src/whatismyip.js) siasky.net account.siasky.net >> /etc/hosts ; node --max-http-header-size=64000 src/index.js" ]
|
||||||
|
|
|
@ -57,7 +57,7 @@ async function handshakeSubdomainCheck(done) {
|
||||||
return genericAccessCheck("hns_via_subdomain", url, done);
|
return genericAccessCheck("hns_via_subdomain", url, done);
|
||||||
}
|
}
|
||||||
|
|
||||||
// handshakeSubdomainCheck returns the result of accessing account dashboard website
|
// accountWebsiteCheck returns the result of accessing account dashboard website
|
||||||
async function accountWebsiteCheck(done) {
|
async function accountWebsiteCheck(done) {
|
||||||
const url = `${process.env.SKYNET_DASHBOARD_URL}/auth/login`;
|
const url = `${process.env.SKYNET_DASHBOARD_URL}/auth/login`;
|
||||||
|
|
||||||
|
|
Reference in New Issue