mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
Use ENV to set important paths
To make it easier to change the parameters ENV vars can be used to set DB, IMAGE, TMP and CONF path. Closes #124
This commit is contained in:
parent
293c37c643
commit
9a23523ae4
@ -16,16 +16,20 @@ RUN mkdir -p /app/data/config && \
|
|||||||
#-----------------------------------------
|
#-----------------------------------------
|
||||||
FROM node:12-alpine3.11 as main
|
FROM node:12-alpine3.11 as main
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
ENV NODE_ENV=production \
|
||||||
|
CONFIG_FILE=/app/data/config/config.json \
|
||||||
|
DB_PATH=/app/data/db \
|
||||||
|
MEDIA_PATH=/app/data/images \
|
||||||
|
TEMP_PATH=/app/data/tmp
|
||||||
# command line arg orverride the config.json with these settings
|
# command line arg orverride the config.json with these settings
|
||||||
ENTRYPOINT ["node", "./src/backend/index", \
|
ENTRYPOINT ["node", "./src/backend/index", \
|
||||||
# after a extensive job (like video converting), pigallery calls gc, to clean up everthing as fast as possible
|
# after a extensive job (like video converting), pigallery calls gc, to clean up everthing as fast as possible
|
||||||
"--expose-gc", \
|
"--expose-gc", \
|
||||||
"--config-path=/app/data/config/config.json", \
|
"--config-path=$CONFIG_FILE", \
|
||||||
"--Server-Database-dbFolder=/app/data/db", \
|
"--Server-Database-dbFolder=$DB_PATH", \
|
||||||
"--Server-Media-folder=/app/data/images", \
|
"--Server-Media-folder=$MEDIA_PATH", \
|
||||||
"--Server-Media-tempFolder=/app/data/tmp"]
|
"--Server-Media-tempFolder=$TEMP_PATH"]
|
||||||
EXPOSE 80
|
EXPOSE 80
|
||||||
ENV NODE_ENV=production
|
|
||||||
RUN apk add --update-cache --repository https://alpine.global.ssl.fastly.net/alpine/v3.11/community/ \
|
RUN apk add --update-cache --repository https://alpine.global.ssl.fastly.net/alpine/v3.11/community/ \
|
||||||
vips ffmpeg
|
vips ffmpeg
|
||||||
COPY --from=builder /app /app
|
COPY --from=builder /app /app
|
||||||
|
@ -14,16 +14,20 @@ RUN mkdir -p /app/data/config && \
|
|||||||
#-----------------------------------------
|
#-----------------------------------------
|
||||||
FROM node:12-stretch-slim as main
|
FROM node:12-stretch-slim as main
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
ENV NODE_ENV=production \
|
||||||
|
CONFIG_FILE=/app/data/config/config.json \
|
||||||
|
DB_PATH=/app/data/db \
|
||||||
|
MEDIA_PATH=/app/data/images \
|
||||||
|
TEMP_PATH=/app/data/tmp
|
||||||
# command line arg orverride the config.json with these settings
|
# command line arg orverride the config.json with these settings
|
||||||
ENTRYPOINT ["node", "./src/backend/index", \
|
ENTRYPOINT ["node", "./src/backend/index", \
|
||||||
# after a extensive job (like video converting), pigallery calls gc, to clean up everthing as fast as possible
|
# after a extensive job (like video converting), pigallery calls gc, to clean up everthing as fast as possible
|
||||||
"--expose-gc", \
|
"--expose-gc", \
|
||||||
"--config-path=/app/data/config/config.json", \
|
"--config-path=$CONFIG_FILE", \
|
||||||
"--Server-Database-dbFolder=/app/data/db", \
|
"--Server-Database-dbFolder=$DB_PATH", \
|
||||||
"--Server-Media-folder=/app/data/images", \
|
"--Server-Media-folder=$MEDIA_PATH", \
|
||||||
"--Server-Media-tempFolder=/app/data/tmp"]
|
"--Server-Media-tempFolder=$TEMP_PATH"]
|
||||||
EXPOSE 80
|
EXPOSE 80
|
||||||
ENV NODE_ENV=production
|
|
||||||
RUN apt-get update && apt-get install -y ffmpeg
|
RUN apt-get update && apt-get install -y ffmpeg
|
||||||
COPY --from=builder /app /app
|
COPY --from=builder /app /app
|
||||||
VOLUME ["/app/data/config", "/app/data/db", "/app/data/images", "/app/data/tmp"]
|
VOLUME ["/app/data/config", "/app/data/db", "/app/data/images", "/app/data/tmp"]
|
||||||
|
@ -14,15 +14,19 @@ RUN set -x && npm install --unsafe-perm && \
|
|||||||
|
|
||||||
FROM node:12-stretch-slim
|
FROM node:12-stretch-slim
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
ENV NODE_ENV=production \
|
||||||
|
CONFIG_FILE=/app/data/config/config.json \
|
||||||
|
DB_PATH=/app/data/db \
|
||||||
|
MEDIA_PATH=/app/data/images \
|
||||||
|
TEMP_PATH=/app/data/tmp
|
||||||
ENTRYPOINT ["npm", "start", "--", \
|
ENTRYPOINT ["npm", "start", "--", \
|
||||||
# after a extensive job (like video converting), pigallery calls gc, to clean up everthing as fast as possible
|
# after a extensive job (like video converting), pigallery calls gc, to clean up everthing as fast as possible
|
||||||
"--expose-gc", \
|
"--expose-gc", \
|
||||||
"--config-path=/app/data/config/config.json", \
|
"--config-path=$CONFIG_FILE", \
|
||||||
"--Server-Database-dbFolder=/app/data/db", \
|
"--Server-Database-dbFolder=$DB_PATH", \
|
||||||
"--Server-Media-folder=/app/data/images", \
|
"--Server-Media-folder=$MEDIA_PATH", \
|
||||||
"--Server-Media-tempFolder=/app/data/tmp"]
|
"--Server-Media-tempFolder=$TEMP_PATH"]
|
||||||
EXPOSE 80
|
EXPOSE 80
|
||||||
ENV NODE_ENV=production
|
|
||||||
COPY --from=BUILDER /build/release /app
|
COPY --from=BUILDER /build/release /app
|
||||||
VOLUME ["/app/data/config", "/app/data/db", "/app/data/images", "/app/data/tmp"]
|
VOLUME ["/app/data/config", "/app/data/db", "/app/data/images", "/app/data/tmp"]
|
||||||
HEALTHCHECK --interval=30s --timeout=10s --retries=4 --start-period=60s \
|
HEALTHCHECK --interval=30s --timeout=10s --retries=4 --start-period=60s \
|
||||||
|
Loading…
Reference in New Issue
Block a user