From a89ca5e46a106cf51c56069e30bd306a27aa0978 Mon Sep 17 00:00:00 2001 From: Alf Sebastian Houge Date: Wed, 25 Jan 2023 23:40:25 +0100 Subject: [PATCH] Update links in docker files to point to this repo --- Dockerfile | 2 +- docker-compose.yml | 2 +- server/Dockerfile | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index a9b7400..48682b3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,7 @@ RUN npm run build FROM alpine:latest -LABEL org.opencontainers.image.source="https://github.com/akhilrex/hammond" +LABEL org.opencontainers.image.source="https://github.com/alfhou/hammond" ENV CONFIG=/config ENV DATA=/assets ENV UID=998 diff --git a/docker-compose.yml b/docker-compose.yml index 31f0ea2..fecd57d 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,7 +1,7 @@ version: "2.1" services: hammond: - image: akhilrex/hammond + image: alfhou/hammond container_name: hammond environment: - JWT_SECRET=somethingverystrong diff --git a/server/Dockerfile b/server/Dockerfile index f2fba9c..430eb9a 100644 --- a/server/Dockerfile +++ b/server/Dockerfile @@ -16,7 +16,7 @@ RUN go build -o ./app ./main.go FROM alpine:latest -LABEL org.opencontainers.image.source="https://github.com/akhilrex/hammond" +LABEL org.opencontainers.image.source="https://github.com/alfhou/hammond" ENV CONFIG=/config ENV DATA=/assets @@ -38,4 +38,4 @@ COPY dist ./dist EXPOSE 3000 -ENTRYPOINT ["./app"] \ No newline at end of file +ENTRYPOINT ["./app"]