From b3c48fd3fad537e7f3bb259e2dc1539c7a92e810 Mon Sep 17 00:00:00 2001 From: Mart124 <37041094+Mart124@users.noreply.github.com> Date: Sat, 9 Jun 2018 14:17:16 +0200 Subject: [PATCH] Add a bitwarden label to docker images (#305) * Add a bitwarden label to docker images * Prefix label with reverse DNS --- src/Admin/Dockerfile | 2 ++ src/Api/Dockerfile | 2 ++ src/Icons/Dockerfile | 2 ++ src/Identity/Dockerfile | 2 ++ util/Attachments/Dockerfile | 2 ++ util/MsSql/Dockerfile | 2 ++ util/Nginx/Dockerfile | 2 ++ util/Server/Dockerfile | 3 +++ util/Setup/Dockerfile | 2 ++ 9 files changed, 19 insertions(+) diff --git a/src/Admin/Dockerfile b/src/Admin/Dockerfile index ddb8bde229..bb62a37fe5 100644 --- a/src/Admin/Dockerfile +++ b/src/Admin/Dockerfile @@ -1,5 +1,7 @@ FROM microsoft/aspnetcore:2.0.6 +LABEL com.bitwarden.product="bitwarden" + RUN apt-get update \ && apt-get install -y --no-install-recommends \ gosu \ diff --git a/src/Api/Dockerfile b/src/Api/Dockerfile index 6caeab3e0f..9e443238f5 100644 --- a/src/Api/Dockerfile +++ b/src/Api/Dockerfile @@ -1,5 +1,7 @@ FROM microsoft/aspnetcore:2.0.6 +LABEL com.bitwarden.product="bitwarden" + RUN apt-get update \ && apt-get install -y --no-install-recommends \ cron \ diff --git a/src/Icons/Dockerfile b/src/Icons/Dockerfile index ddb8bde229..bb62a37fe5 100644 --- a/src/Icons/Dockerfile +++ b/src/Icons/Dockerfile @@ -1,5 +1,7 @@ FROM microsoft/aspnetcore:2.0.6 +LABEL com.bitwarden.product="bitwarden" + RUN apt-get update \ && apt-get install -y --no-install-recommends \ gosu \ diff --git a/src/Identity/Dockerfile b/src/Identity/Dockerfile index ddb8bde229..bb62a37fe5 100644 --- a/src/Identity/Dockerfile +++ b/src/Identity/Dockerfile @@ -1,5 +1,7 @@ FROM microsoft/aspnetcore:2.0.6 +LABEL com.bitwarden.product="bitwarden" + RUN apt-get update \ && apt-get install -y --no-install-recommends \ gosu \ diff --git a/util/Attachments/Dockerfile b/util/Attachments/Dockerfile index e17af14bd3..a0e897ea66 100644 --- a/util/Attachments/Dockerfile +++ b/util/Attachments/Dockerfile @@ -1,5 +1,7 @@ FROM bitwarden/server +LABEL com.bitwarden.product="bitwarden" + RUN apt-get update \ && apt-get install -y --no-install-recommends \ gosu \ diff --git a/util/MsSql/Dockerfile b/util/MsSql/Dockerfile index 320e08d57a..9613d3c77f 100644 --- a/util/MsSql/Dockerfile +++ b/util/MsSql/Dockerfile @@ -1,5 +1,7 @@ FROM microsoft/mssql-server-linux:2017-CU7 +LABEL com.bitwarden.product="bitwarden" + RUN apt-get update \ && apt-get install -y --no-install-recommends \ cron \ diff --git a/util/Nginx/Dockerfile b/util/Nginx/Dockerfile index 3c68583886..942e94dcf3 100644 --- a/util/Nginx/Dockerfile +++ b/util/Nginx/Dockerfile @@ -1,5 +1,7 @@ FROM nginx:1.12 +LABEL com.bitwarden.product="bitwarden" + RUN apt-get update \ && apt-get install -y --no-install-recommends \ gosu \ diff --git a/util/Server/Dockerfile b/util/Server/Dockerfile index 10d213f54f..896cef3b8f 100644 --- a/util/Server/Dockerfile +++ b/util/Server/Dockerfile @@ -1,2 +1,5 @@ FROM microsoft/aspnetcore:2.0.6 + +LABEL com.bitwarden.product="bitwarden" + COPY obj/Docker/publish /bitwarden_server diff --git a/util/Setup/Dockerfile b/util/Setup/Dockerfile index c1fad78c9c..bab4468127 100644 --- a/util/Setup/Dockerfile +++ b/util/Setup/Dockerfile @@ -1,5 +1,7 @@ FROM microsoft/dotnet:2.0.6-runtime +LABEL com.bitwarden.product="bitwarden" + RUN apt-get update \ && apt-get install -y --no-install-recommends \ openssl \