This commit is contained in:
2025-10-02 00:51:42 +02:00
commit 070b02ea62
16 changed files with 298 additions and 0 deletions

37
docker-compose.yml Normal file
View File

@@ -0,0 +1,37 @@
services:
mc-vanilla:
image: itzg/minecraft-server
container_name: mc-vanilla
ports:
- "25565:25565"
environment:
TZ: "Europe/Prague"
#TYPE: "PAPER"
VERSION: "1.21.6"
EULA: "TRUE"
ENABLE_RCON: "true"
RCON_PASSWORD: "Revoluce@1989"
RCON_PORT: 25575
MAX_PLAYERS: 6
VIEW_DISTANCE: 20
SIMULATION_DISTANCE: 10
OVERRIDE_ICON: true
ICON: /icon.png
DIFFICULTY: hard
MEMORY: 10G
INIT_MEMORY: 10G
volumes:
- ./data:/data
- ./icon.png:/icon.png
restart: unless-stopped
frankstein-discord-bot:
image: python:3.11-slim
build:
context: ./discord-bot
dockerfile: Dockerfile
volumes:
- ./discord-bot:/discord-bot
env_file:
- discord-bot/.env-bot