GTA SA:MP Linux Server in Docker
1.4K
Very simple docker image for running GTA SA:MP Server 0.37 R2-1. The image can be pulled from Docker hub:
docker run -d -p 7777:7777 -p 7777:7777/udp --name samp-server krustowski/samp-server-docker
It it vital to forward both TCP and UDP ports!
Image can be built using Dockerfile as well on the local machine:
docker build . -t samp-server-built-image
docker run -d -p 7777:7777 -p 7777:7777/udp --name samp-server2 samp-server-built-image
Thanks to https://github.com/mick88/samp-client
Connection, actual status (players, weather, map, hostname) and RCON access can be done using:
pip3 install samp-client
python3 check_server.py 127.0.0.1 7777
server_log.txt to docker logsContent type
Image
Digest
Size
61.4 MB
Last updated
over 4 years ago
docker pull krustowski/samp-server-docker