mirror of
https://github.com/Luzifer/nginx-sso.git
synced 2024-12-20 12:51:17 +00:00
Add dockerized version
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
bfa3bd1b55
commit
daa85d5016
2 changed files with 39 additions and 0 deletions
22
Dockerfile
Normal file
22
Dockerfile
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
FROM golang:alpine
|
||||||
|
|
||||||
|
LABEL maintainer "Knut Ahlers <knut@ahlers.me>"
|
||||||
|
|
||||||
|
ADD . /go/src/github.com/Luzifer/nginx-sso
|
||||||
|
WORKDIR /go/src/github.com/Luzifer/nginx-sso
|
||||||
|
|
||||||
|
RUN set -ex \
|
||||||
|
&& apk --no-cache add git ca-certificates bash curl \
|
||||||
|
&& go install -ldflags "-X main.version=$(git describe --tags || git rev-parse --short HEAD || echo dev)" \
|
||||||
|
&& curl -sSfLo /usr/local/bin/dumb-init https://github.com/Yelp/dumb-init/releases/download/v1.2.1/dumb-init_1.2.1_amd64 \
|
||||||
|
&& chmod +x /usr/local/bin/dumb-init \
|
||||||
|
&& apk --no-cache del --purge git curl
|
||||||
|
|
||||||
|
EXPOSE 8082
|
||||||
|
|
||||||
|
VOLUME ["/data"]
|
||||||
|
|
||||||
|
ADD docker-start.sh /usr/local/bin
|
||||||
|
|
||||||
|
ENTRYPOINT ["/usr/local/bin/docker-start.sh"]
|
||||||
|
CMD ["--"]
|
17
docker-start.sh
Executable file
17
docker-start.sh
Executable file
|
@ -0,0 +1,17 @@
|
||||||
|
#!/usr/local/bin/dumb-init /bin/bash
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
# Copy frontend if not available
|
||||||
|
[ -d /data/frontend ] || cp -r /go/src/github.com/Luzifer/nginx-sso/frontend /data/frontend
|
||||||
|
|
||||||
|
[ -e /data/config.yaml ] || {
|
||||||
|
cp /go/src/github.com/Luzifer/nginx-sso/config.yaml /data/config.yaml
|
||||||
|
echo "An example configuration was copied to /data/config.yaml - You want to edit that one!"
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
echo "Starting nginx-sso"
|
||||||
|
exec /go/bin/nginx-sso \
|
||||||
|
--config /data/config.yaml \
|
||||||
|
--frontend-dir /data/frontend \
|
||||||
|
$@
|
Loading…
Reference in a new issue