.
continuous-integration/drone/push Build was killed
Details
continuous-integration/drone/push Build was killed
Details
This commit is contained in:
parent
8757db0966
commit
98aae8c614
|
@ -151,6 +151,8 @@ services:
|
|||
- DRONE_DEBUG=true
|
||||
- DRONE_SECRET=${DRONE_CONVERT_SECRET}
|
||||
- DRONE_STARLARK_REPO_PATHS=this:/repos
|
||||
- SIGYL_STACK_NAME=$SIGYL_STACK_NAME
|
||||
- SIGYL_STACK_ROOT=$SIGYL_STACK_ROOT
|
||||
networks:
|
||||
- appnet
|
||||
|
||||
|
@ -314,11 +316,8 @@ volumes:
|
|||
registry-data:
|
||||
registry-cache-data:
|
||||
guacamole-postgresql-data:
|
||||
letsencrypt-remote:
|
||||
letsencrypt-chat:
|
||||
letsencrypt-git:
|
||||
letsencrypt-drone:
|
||||
letsencrypt-blog:
|
||||
ghost-content:
|
||||
mongo-chat:
|
||||
chat-uploads:
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
FROM drone/drone-convert-starlark
|
||||
COPY repos /repos
|
||||
COPY run.sh /
|
||||
CMD sh run.sh
|
||||
USER root
|
||||
RUN apk update
|
||||
RUN apk add gettext # enables envsubst
|
||||
CMD sh /run.sh
|
|
@ -11,5 +11,7 @@ publicSecrets = [
|
|||
"remote-domain",
|
||||
"ssh-user",
|
||||
"guacamole-postgres-db",
|
||||
"guacamole-postgres-user"
|
||||
"guacamole-postgres-user",
|
||||
"sigyl-stack-root",
|
||||
"sigyl-stack-name",
|
||||
]
|
|
@ -1,3 +1,3 @@
|
|||
envsubst < /repos/stack/stack-name._star > /repos/stack/stack-name._star
|
||||
envsubst < /repos/stack/stack-root._star > /repos/stack/stack-root._star
|
||||
envsubst < /repos/stack/stack-name._star > /repos/stack/stack-name.star
|
||||
envsubst < /repos/stack/stack-root._star > /repos/stack/stack-root.star
|
||||
/bin/drone-convert-starlark
|
|
@ -2,5 +2,6 @@ FROM wernight/ngrok
|
|||
COPY run.sh /
|
||||
COPY ngrok._yml /home/ngrok/.ngrok2/ngrok._yml
|
||||
USER root
|
||||
RUN apk update
|
||||
RUN apk add gettext # enables envsubst
|
||||
CMD sh /run.sh
|
Reference in New Issue