diff --git a/lbrycrd/Dockerfile b/lbrycrd/Dockerfile index a8f0b6c..1ac4995 100644 --- a/lbrycrd/Dockerfile +++ b/lbrycrd/Dockerfile @@ -1,7 +1,7 @@ ## This base image is for running latest lbrycrdd # For some reason I may switch this image over to Alpine when I can RCA why it won't start. FROM ubuntu:18.04 -LABEL MAINTAINER="chamunks [at] gmail [dot] com" +LABEL MAINTAINER="leopere [at] nixc [dot] us" RUN adduser lbrycrdd --gecos GECOS --shell /bin/bash --disabled-password --home /data/ && \ apt-get update && \ diff --git a/lbrynet-daemon/Dockerfile b/lbrynet-daemon/Dockerfile index 021bf6b..8118ec0 100644 --- a/lbrynet-daemon/Dockerfile +++ b/lbrynet-daemon/Dockerfile @@ -1,6 +1,6 @@ ## This base image is for running the latest lbrynet-daemon release. FROM ubuntu:18.04 -LABEL MAINTAINER="chamunks [at] gmail [dot] com" +LABEL MAINTAINER="leopere [at] nixc [dot] us" RUN apt-get update && apt-get -y install unzip # RUN mkdir -pv /data && chown 1000:1000 /data diff --git a/reflector.go/Dockerfile b/reflector.go/Dockerfile index 481f11b..4977969 100644 --- a/reflector.go/Dockerfile +++ b/reflector.go/Dockerfile @@ -1,6 +1,6 @@ ## base image for github.com/lbryio/reflector.go release binaries FROM golang:1.11.1 as builder -LABEL MAINTAINER="chamunks [at] gmail [dot] com" +LABEL MAINTAINER="leopere [at] nixc [dot] us" RUN export GOROOT=$GOPATH/bin && \ go get -v -u github.com/lbryio/reflector.go && \ @@ -11,7 +11,7 @@ RUN export GOROOT=$GOPATH/bin && \ ## base image for github.com/lbryio/reflector.go release binaries FROM ubuntu:18:04 as app -LABEL MAINTAINER="chamunks [at] gmail [dot] com" +LABEL MAINTAINER="leopere [at] nixc [dot] us" COPY /go/src/github.com/lbryio/reflector.go/bin/prism-bin /usr/bin/prism-bin COPY start.sh /usr/local/bin/start diff --git a/www.spee.ch/Dockerfile b/www.spee.ch/Dockerfile index 889e4f2..b42839c 100644 --- a/www.spee.ch/Dockerfile +++ b/www.spee.ch/Dockerfile @@ -3,7 +3,7 @@ ## https://hub.docker.com/_/node/ # 8.11.2-alpine, 8.11-alpine, 8-alpine, carbon-alpine (8/alpine/Dockerfile) FROM node:8-alpine -LABEL MAINTAINER="chamunks [at] gmail [dot] com" +LABEL MAINTAINER="leopere [at] nixc [dot] us" ## Install base packages and clone repo to src directory. RUN apk update && apk --no-cache add git curl wget python build-base bash && \