mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2026-03-04 13:56:24 +00:00
docs: mkdocs cleanup and caught up with latest README changes (#2155)
This commit is contained in:
26
docs/misc/deployment/docker-compose.md
Normal file
26
docs/misc/deployment/docker-compose.md
Normal file
@@ -0,0 +1,26 @@
|
||||
Rather than type the server options below, the port mappings above, etc
|
||||
every time you want to create new Minecraft server, you can now use
|
||||
[Docker Compose](https://docs.docker.com/compose/). Start with a
|
||||
`docker-compose.yml` file like the following:
|
||||
|
||||
``` yaml
|
||||
version: "3"
|
||||
|
||||
services:
|
||||
mc:
|
||||
image: itzg/minecraft-server
|
||||
ports:
|
||||
- 25565:25565
|
||||
environment:
|
||||
EULA: "TRUE"
|
||||
tty: true
|
||||
stdin_open: true
|
||||
restart: unless-stopped
|
||||
```
|
||||
|
||||
and in the same directory as that file run
|
||||
|
||||
docker-compose up -d
|
||||
|
||||
Now, go play...or adjust the `environment` section to configure
|
||||
this server instance.
|
||||
Reference in New Issue
Block a user