.
continuous-integration/drone/push Build was killed
Details
continuous-integration/drone/push Build was killed
Details
This commit is contained in:
parent
c2ffce8122
commit
1ee5198251
|
@ -13,4 +13,6 @@ publicSecrets = [
|
||||||
"guacamole-postgres-user",
|
"guacamole-postgres-user",
|
||||||
"sigyl-stack-root",
|
"sigyl-stack-root",
|
||||||
"sigyl-stack-name",
|
"sigyl-stack-name",
|
||||||
|
"ghost_mail_service",
|
||||||
|
"ghost_mail_user",
|
||||||
]
|
]
|
|
@ -4,4 +4,5 @@ secretSecrets = [
|
||||||
"drone-rpc-secret",
|
"drone-rpc-secret",
|
||||||
"guacamole-postgres-password",
|
"guacamole-postgres-password",
|
||||||
"ngrok-auth-token",
|
"ngrok-auth-token",
|
||||||
|
"ghost_mail_user",
|
||||||
]
|
]
|
|
@ -1,7 +1,8 @@
|
||||||
FROM ghost
|
FROM ghost
|
||||||
|
# USER root
|
||||||
|
RUN apt-get update
|
||||||
|
RUN apt-get install -y gettext
|
||||||
|
|
||||||
COPY config.production.json /var/lib/ghost/
|
COPY config.production.json /var/lib/ghost/
|
||||||
COPY run.sh /
|
COPY run.sh /
|
||||||
USER root
|
|
||||||
RUN apk update
|
|
||||||
RUN apk add gettext # enables envsubst
|
|
||||||
CMD ["sh" "run.sh"]
|
CMD ["sh" "run.sh"]
|
||||||
|
|
Reference in New Issue