Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM alpine:3.13

RUN apk add --no-cache ca-certificates libstdc++ su-exec libpq
RUN apk add --no-cache ca-certificates libstdc++ su-exec libpq libmaxminddb-dev
RUN set -eux; \
addgroup -g 9987 ts3server; \
adduser -u 9987 -Hh /var/ts3server -G ts3server -s /sbin/nologin -D ts3server; \
Expand Down
1 change: 1 addition & 0 deletions alpine/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ if [ "$1" = 'ts3server' ]; then
${TS3SERVER_MACHINE_ID:+machine_id=${TS3SERVER_MACHINE_ID}}
${TS3SERVER_QUERY_SKIPBRUTEFORCECHECK:+query_skipbruteforcecheck=${TS3SERVER_QUERY_SKIPBRUTEFORCECHECk}}
${TS3SERVER_HINTS_ENABLED:+hints_enabled=${TS3SERVER_HINTS_ENABLED}}
${TS3SERVER_MMDBPATH:+mmdbpath=${TS3SERVER_MMDBPATH}}
EOF

cat << EOF | sed 's/^[ \t]*//;s/[ \t]*$//;/^$/d' > /var/run/ts3server/ts3db.ini
Expand Down