mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-06-06 13:12:33 +02:00
Use quotes in labels for consistency
This commit is contained in:
parent
309c338644
commit
d05b7036d9
2 changed files with 14 additions and 14 deletions
14
dockerfile
14
dockerfile
|
@ -14,15 +14,15 @@ FROM node:14-buster-slim AS release
|
|||
|
||||
ARG BUILD_DATE
|
||||
|
||||
LABEL org.opencontainers.image.authors='Louis Lam' \
|
||||
org.opencontainers.image.url='https://uptime.kuma.pet' \
|
||||
org.opencontainers.image.documentation='https://github.com/louislam/uptime-kuma/wiki' \
|
||||
org.opencontainers.image.source='https://github.com/louislam/uptime-kuma.git' \
|
||||
org.opencontainers.image.vendor='Louis Lam' \
|
||||
org.opencontainers.image.licenses='MIT License' \
|
||||
LABEL org.opencontainers.image.authors="Louis Lam" \
|
||||
org.opencontainers.image.url="https://uptime.kuma.pet" \
|
||||
org.opencontainers.image.documentation="https://github.com/louislam/uptime-kuma/wiki" \
|
||||
org.opencontainers.image.source="https://github.com/louislam/uptime-kuma.git" \
|
||||
org.opencontainers.image.vendor="Louis Lam" \
|
||||
org.opencontainers.image.licenses="MIT License" \
|
||||
org.opencontainers.image.title="Uptime Kuma" \
|
||||
org.opencontainers.image.description="Self-hosted uptime monitoring tool with notifications" \
|
||||
org.opencontainers.image.created=$BUILD_DATE
|
||||
org.opencontainers.image.created="$BUILD_DATE"
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
|
|
|
@ -13,15 +13,15 @@ FROM node:14-alpine3.12 AS release
|
|||
|
||||
ARG BUILD_DATE
|
||||
|
||||
LABEL org.opencontainers.image.authors='Louis Lam' \
|
||||
org.opencontainers.image.url='https://uptime.kuma.pet' \
|
||||
org.opencontainers.image.documentation='https://github.com/louislam/uptime-kuma/wiki' \
|
||||
org.opencontainers.image.source='https://github.com/louislam/uptime-kuma.git' \
|
||||
org.opencontainers.image.vendor='Louis Lam' \
|
||||
org.opencontainers.image.licenses='MIT License' \
|
||||
LABEL org.opencontainers.image.authors="Louis Lam" \
|
||||
org.opencontainers.image.url="https://uptime.kuma.pet" \
|
||||
org.opencontainers.image.documentation="https://github.com/louislam/uptime-kuma/wiki" \
|
||||
org.opencontainers.image.source="https://github.com/louislam/uptime-kuma.git" \
|
||||
org.opencontainers.image.vendor="Louis Lam" \
|
||||
org.opencontainers.image.licenses="MIT License" \
|
||||
org.opencontainers.image.title="Uptime Kuma" \
|
||||
org.opencontainers.image.description="Self-hosted uptime monitoring tool with notifications" \
|
||||
org.opencontainers.image.created=$BUILD_DATE
|
||||
org.opencontainers.image.created="$BUILD_DATE"
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue