Skip to content

Instantly share code, notes, and snippets.

@quad-damage
quad-damage / r1delta_ds.md
Last active May 5, 2025 14:28
R1Delta Dedicated Server setup through Docker.

R1Delta Dedicated Server (Docker Setup)

This guide provides basic instructions for setting up your R1Delta Dedicated Server using Docker.

0. Basic Docker Concepts

  • Images are downloaded from online repositories (docker pull).
  • Containers are created from these images, providing isolated environments.
  • Ports from containers are exposed to your host machine using -p OutsidePort:InsidePort/protocol.
  • Directories on your host can be mounted within containers using -v /host/directory:/container/directory.