Skip to main content

Easily create game servers using Docker and Python.

Project description

Docker Game Servers

Configuration

  • Install Docker: you can find the instructions for installing Docker on the official website.
  • Ensure you have Python 3.x on your system by running python --version.

Running a Game Server

  1. Install this package
$ pip install docker-games
  1. Create your server's configuration in a new Python file
  2. Enjoy!

Minecraft

from docker_games import Minecraft

minecraft = Minecraft('creepers_go_boom', '2GB', '/home/stefano/mc_data')
minecraft.add_ports(25565, 25565)
minecraft.accept_license()  # <-- accept Minecraft's EULA
minecraft.online_mode()     # <-- server checks connecting players against Minecraft account database

minecraft.start()

Docker image: https://hub.docker.com/r/itzg/minecraft-server

Factorio

from docker_games import Factorio

factorio = Factorio('flying_robots', '/home/stefano/factorio_data')
factorio.add_ports(34197, '34197/udp')
factorio.add_ports(27015, '27015/tcp')

factorio.start()

Docker image: https://hub.docker.com/r/factoriotools/factorio

TeamSpeak

from docker_games import TeamSpeak

teamspeak = TeamSpeak('tsserver', '/tmp/ts_data')
teamspeak.add_ports(9987, '9987/udp')
teamspeak.add_ports(10011, 10011)
teamspeak.add_ports(30033, 30033)
teamspeak.accept_license()  # <-- accept TeamSpeak's license

teamspeak.start()

Docker image: https://hub.docker.com/_/teamspeak

Contributing

Contributions are very welcome!

If you want to improve this project, or add more server, fork the repo and submit a pull request.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

docker-games-1.0.0a2.tar.gz (9.2 kB view hashes)

Uploaded Source

Built Distribution

docker_games-1.0.0a2-py3-none-any.whl (11.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page