mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-09-30 18:45:40 +08:00
change script paths
Signed-off-by: Zoey <zoey@z0ey.de>
This commit is contained in:
parent
d100bf985e
commit
b9709aa400
1 changed files with 4 additions and 4 deletions
|
@ -1,8 +1,8 @@
|
||||||
# From https://github.com/docker-library/postgres/blob/master/15/alpine/Dockerfile
|
# From https://github.com/docker-library/postgres/blob/master/15/alpine/Dockerfile
|
||||||
FROM postgres:15.2-alpine
|
FROM postgres:15.2-alpine
|
||||||
|
|
||||||
COPY --chmod=775 start.sh /usr/bin/start.sh
|
COPY --chmod=775 start.sh /start.sh
|
||||||
COPY --chmod=775 healthcheck.sh /usr/bin/healthcheck.sh
|
COPY --chmod=775 healthcheck.sh /healthcheck.sh
|
||||||
COPY --chmod=775 init-user-db.sh /docker-entrypoint-initdb.d/init-user-db.sh
|
COPY --chmod=775 init-user-db.sh /docker-entrypoint-initdb.d/init-user-db.sh
|
||||||
|
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
|
@ -29,7 +29,7 @@ RUN set -ex; \
|
||||||
VOLUME /mnt/data
|
VOLUME /mnt/data
|
||||||
|
|
||||||
USER postgres
|
USER postgres
|
||||||
ENTRYPOINT ["start.sh"]
|
ENTRYPOINT ["/start.sh"]
|
||||||
|
|
||||||
HEALTHCHECK CMD healthcheck.sh
|
HEALTHCHECK CMD /healthcheck.sh
|
||||||
LABEL com.centurylinklabs.watchtower.monitor-only="true"
|
LABEL com.centurylinklabs.watchtower.monitor-only="true"
|
||||||
|
|
Loading…
Add table
Reference in a new issue