Using my old gaming pc for my CasaOs server and it runs everything like its nothing so I thought about trying to run a fivem server for my friends that way I get to choose what plugins are used over playing a popular fivem server.
Fivem can be run as a docker service See https://hub.docker.com/r/spritsail/fivem or GitHub - chettapong/docker-fivem: Simple containerized FiveM server running on Alpine Linux
There no reason it cannot be run as a custom server however the FiveM developers have these requrements on a Windows device so while Linux may be lighter do you at least hit these requirements?
Minimum
CPU: Intel Core 2 Q6600 @ 2.40GHz / AMD Phenom 9850 @ 2.5GHz|
GPU1: NVIDIA 9800 GT 1GB / AMD HD 4870 1GB / Intel HD GT2
RAM: 8GB (4 may work)
HDD: 105GB + ~4GB
2 Likes
the setup for the fivem docker image seems simple:
services:
fivem:
image: spritsail/fivem
restart: on-failure
environment:
LICENSE_KEY: <your-license-here>
NO_DEFAULT_CONFIG: 1
ports:
- '40120:40120'
- '30120:30120'
- '30120:30120/udp'
volumes:
- '/DATA/AppData/fivem/config:/config'
- '/DATA/AppData/fivem/data:/txData'
stdin_open: true
tty: true
Note: make sure to change the
<your-license-here>
Try importing this in casaos and start from there.
1 Like