implemented Docker, added default configuration

This commit is contained in:
Bryan Joshua Pedini 2020-04-21 12:17:44 +02:00
parent 35b2c4dd02
commit 5f57dca29e
2 changed files with 48 additions and 0 deletions

36
Dockerfile Normal file
View File

@ -0,0 +1,36 @@
FROM golang:1.14-buster AS build-env
COPY . ${GOPATH}/src/github.com/rls-moe/nyx
WORKDIR ${GOPATH}/src/github.com/rls-moe/nyx
RUN go build -o $GOPATH/bin/nyx
FROM debian:bullseye
LABEL maintainer="b.pedini@bjphoster.com"
EXPOSE 8080
RUN groupadd \
--gid 1000 \
nyx && \
useradd \
--home-dir /opt/nyx \
--comment "Nyx Board" \
--gid nyx \
--create-home \
--no-user-group \
--uid 1000 \
--shell /bin/bash \
nyx
ENV USER nyx
CMD [ "/usr/local/bin/nyx" ]
COPY --from=build-env /go/bin/nyx /opt/nyx/nyx
COPY --from=build-env /go/src/github.com/rls-moe/nyx/config.example.yml /opt/nyx/config.yml
RUN ln -s \
/opt/nyx/nyx \
/usr/local/bin/nyx && \
chown -R \
nyx:nyx /opt/nyx

12
config.example.yml Normal file
View File

@ -0,0 +1,12 @@
site:
title: "NyxChan"
description: "NyxChan Default Configuration"
db:
file: ":memory:"
mastersecret: "changeme"
listen_on: ":8080"
captcha:
mode: "internal"