PlayerServers-Wiki-Archive/overview/installation/docker-installation.md
2022-08-24 23:53:09 +00:00

33 lines
791 B
Markdown

---
description: >-
Since PlayerServers v3, we now offer Docker support as well for those that
care about security and network isolation of their subservers.
---
# 🛳 Docker configuration
## Introduction
Docker adds a secure isolation layer to your PlayerServers, so you can safely allow players to install all sorts of plugins without being afraid of them breaking something. 
## Tutorial
### Docker installation
For a quick install of Docker CE, you can execute the command below:
```bash
curl -sSL https://get.docker.com/ | CHANNEL=stable bash
```
### Setup
After successfully installing docker, you can enable docker support inside your config.yml.
{% code title="Config.yml" overflow="wrap" lineNumbers="true" %}
```yaml
docker:
enabled: true
```
{% endcode %}