Change entrypoint directory
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Lennard Brinkhaus 2022-01-10 15:05:36 +01:00
parent 76c9d47502
commit 093700b621
No known key found for this signature in database
GPG Key ID: 015DB28D8EEE19EC
2 changed files with 7 additions and 5 deletions

2
.gitignore vendored
View File

@ -1,5 +1,6 @@
# ---> Linux
*~
.idea/
# temporary files which can be created if a process still has a handle open of a deleted file
.fuse_hidden*
@ -48,6 +49,7 @@ $RECYCLE.BIN/
# Icon must end with two \r
Icon
# Thumbnails
._*

View File

@ -136,10 +136,10 @@ RUN sed -i 's,listen 80;,listen 8080;,' /etc/nginx/conf.d/default.co
&& chown -R $UID:0 /etc/nginx \
&& chmod -R g+w /etc/nginx
COPY docker-entrypoint.sh /
COPY 10-listen-on-ipv6-by-default.sh /docker-entrypoint.d
COPY 20-envsubst-on-templates.sh /docker-entrypoint.d
COPY 30-tune-worker-processes.sh /docker-entrypoint.d
COPY 1.21/docker-entrypoint.sh /
COPY 1.21/10-listen-on-ipv6-by-default.sh /docker-entrypoint.d
COPY 1.21/20-envsubst-on-templates.sh /docker-entrypoint.d
COPY 1.21/30-tune-worker-processes.sh /docker-entrypoint.d
ENTRYPOINT ["/docker-entrypoint.sh"]
EXPOSE 8080