With this Docker-image you can run your own FiveM (GTA multiplayer mod) server.
You can convert your existing configuration/resources-folder to an Docker-container using this image. If you run it as a new environment the needed configuration will be generated in the mounted /config directory.
You should stop the container to configure if its a new installation.
This version is inspired on the spritsail/fivem-image.
To use this image you need to obtain license key from FiveM. More information can be found here
You can use the following information to run this image as your own container
docker run -d \
--name FiveM \
--restart=unless-stopped \
-e LICENSE_KEY=<license_key_here> \
-d 30120:30120 \
-d 30120:30120/udp \
-v /opt/fivem-data:/config \
lionear/fivem:latestdocker run -d \
--name FiveM \
--restart=unless-stopped \
-e LICENSE_KEY=<license_key_here> \
-d 30120:30120 \
-d 30120:30120/udp \
-v /opt/fivem-data:/config \
lionear/fivem:recommededLICENSE_KEY- This is the required license key you can obtain from FiveM.
The latest-tag is based on the 2683-artifact build of FiveM. If you need to run the latest recommended build you can use the recommended build.
The source is freely obtainable at the lionear/fivem-docker GitHub repository, When having issues or requests you can use the Issue Tracker on the same repository.
- This image is inspired on the spritsail/fivem image.