.
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_DEBUG=true
|
||||||
- DRONE_SECRET=${DRONE_CONVERT_SECRET}
|
- DRONE_SECRET=${DRONE_CONVERT_SECRET}
|
||||||
- DRONE_STARLARK_REPO_PATHS=this:/repos
|
- DRONE_STARLARK_REPO_PATHS=this:/repos
|
||||||
|
- SIGYL_STACK_NAME=$SIGYL_STACK_NAME
|
||||||
|
- SIGYL_STACK_ROOT=$SIGYL_STACK_ROOT
|
||||||
networks:
|
networks:
|
||||||
- appnet
|
- appnet
|
||||||
|
|
||||||
|
@ -314,11 +316,8 @@ volumes:
|
||||||
registry-data:
|
registry-data:
|
||||||
registry-cache-data:
|
registry-cache-data:
|
||||||
guacamole-postgresql-data:
|
guacamole-postgresql-data:
|
||||||
letsencrypt-remote:
|
|
||||||
letsencrypt-chat:
|
|
||||||
letsencrypt-git:
|
letsencrypt-git:
|
||||||
letsencrypt-drone:
|
letsencrypt-drone:
|
||||||
letsencrypt-blog:
|
|
||||||
ghost-content:
|
ghost-content:
|
||||||
mongo-chat:
|
mongo-chat:
|
||||||
chat-uploads:
|
chat-uploads:
|
||||||
|
|
|
@ -1,4 +1,7 @@
|
||||||
FROM drone/drone-convert-starlark
|
FROM drone/drone-convert-starlark
|
||||||
COPY repos /repos
|
COPY repos /repos
|
||||||
COPY run.sh /
|
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",
|
"remote-domain",
|
||||||
"ssh-user",
|
"ssh-user",
|
||||||
"guacamole-postgres-db",
|
"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-name._star > /repos/stack/stack-name.star
|
||||||
envsubst < /repos/stack/stack-root._star > /repos/stack/stack-root._star
|
envsubst < /repos/stack/stack-root._star > /repos/stack/stack-root.star
|
||||||
/bin/drone-convert-starlark
|
/bin/drone-convert-starlark
|
|
@ -2,5 +2,6 @@ FROM wernight/ngrok
|
||||||
COPY run.sh /
|
COPY run.sh /
|
||||||
COPY ngrok._yml /home/ngrok/.ngrok2/ngrok._yml
|
COPY ngrok._yml /home/ngrok/.ngrok2/ngrok._yml
|
||||||
USER root
|
USER root
|
||||||
|
RUN apk update
|
||||||
RUN apk add gettext # enables envsubst
|
RUN apk add gettext # enables envsubst
|
||||||
CMD sh /run.sh
|
CMD sh /run.sh
|
Reference in New Issue