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

@extDB3 extension support #137

Open
m1kesk opened this issue Sep 1, 2024 · 1 comment
Open

@extDB3 extension support #137

m1kesk opened this issue Sep 1, 2024 · 1 comment
Labels
enhancement New feature or request

Comments

@m1kesk
Copy link

m1kesk commented Sep 1, 2024

Current build does not support arma 3 extension extDB3

Add dependencies to image for arma 3 server to use extDB3 extension

According to documentation, linux / windows images needed these dependencies:

Windows Requirement

Visual Studio C++ Redistributable 2019 32bit + 64bit version https://support.microsoft.com/en-us/help/2977003/the-latest-supported-visual-c-downloads
Linux Requirement

Requirements Glibc Version 2.17+ Centos7+ / Debian 8+ / Ubuntu 14.10+

Deb Package System

apt-get install libtbb2:i386 and apt-get install libtbbmalloc2

RPM Package System

yum install tbb.i686 and yum install tbb

@m1kesk m1kesk added the enhancement New feature or request label Sep 1, 2024
@Xehia
Copy link

Xehia commented Sep 30, 2024

Yes, you can use @extDB3, just install libtbbmalloc2 inside the container.

Add these lines in your docker-compose.yml

 entrypoint: >
      /bin/sh -c "apt-get update && apt-get install -y libtbbmalloc2 && apt-get clean && java -jar ./app.jar"

Place these lines under the network_mode, like this:

armaservermanager:
    image: "fugasjunior/armaservermanager:${VERSION}"
    restart: always
    # 'host' network mode is not available on Windows. If you need to run this image on Windows, you need to set up port mappings manually.
    network_mode: host
    entrypoint: >
          /bin/sh -c "apt-get update && apt-get install -y libtbbmalloc2 && apt-get clean && java -jar ./app.jar"

Then extract the mod folder @extDB3 inside /armaservermanager/storage/servers/ARMA3

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants