Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for PostgreSQL backend #55

Closed
wants to merge 2 commits into from
Closed
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
5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ RUN \
libjpeg-turbo-dev \
libogg-dev \
libpng-dev \
libpq-dev \
openssl-dev \
libtool \
libvorbis-dev \
Expand All @@ -50,6 +51,7 @@ RUN \
leveldb \
libgcc \
libintl \
libpq \
libstdc++ \
luajit \
lua-socket \
Expand Down Expand Up @@ -109,6 +111,9 @@ RUN \
-DENABLE_GETTEXT=0 \
-DENABLE_LEVELDB=1 \
-DENABLE_LUAJIT=1 \
-DENABLE_POSTGRESQL=1 \
-DPostgreSQL_INCLUDE_DIR="/usr/include/postgresql" \
-DPostgreSQL_LIBRARY="/usr/lib/libpq.so" \
-DENABLE_REDIS=1 \
-DENABLE_SOUND=0 \
-DENABLE_SYSTEM_GMP=1 \
Expand Down
5 changes: 5 additions & 0 deletions Dockerfile.aarch64
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ RUN \
libjpeg-turbo-dev \
libogg-dev \
libpng-dev \
libpq-dev \
openssl-dev \
libtool \
libvorbis-dev \
Expand All @@ -51,6 +52,7 @@ RUN \
libgcc \
libintl \
libstdc++ \
libpq \
luajit \
lua-socket \
sqlite \
Expand Down Expand Up @@ -109,6 +111,9 @@ RUN \
-DENABLE_GETTEXT=0 \
-DENABLE_LEVELDB=1 \
-DENABLE_LUAJIT=1 \
-DENABLE_POSTGRESQL=1 \
-DPostgreSQL_INCLUDE_DIR="/usr/include/postgresql" \
-DPostgreSQL_LIBRARY="/usr/lib/libpq.so" \
-DENABLE_REDIS=1 \
-DENABLE_SOUND=0 \
-DENABLE_SYSTEM_GMP=1 \
Expand Down
1 change: 1 addition & 0 deletions readme-vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ app_setup_block: |
As per [upstream request](https://github.com/minetest/minetest/releases/tag/5.8.0) this image no longer includes [minetest_game](https://github.com/minetest/minetest_game), so if required you will need to either install via ContentDB or download it from their repo and copy to `/config/.minetest/games/minetest`
# changelog
changelogs:
- {date: "01.13.24:", desc: "Add PostgreSQL backend support to build."}
- {date: "12.07.23:", desc: "Rebase to Alpine 3.18, remove minetest_game."}
- {date: "06.07.23:", desc: "Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf)"}
- {date: "09.04.23:", desc: "Build logic changes to copy devtest to default games."}
Expand Down