init
This commit is contained in:
37
docker-compose.yml
Normal file
37
docker-compose.yml
Normal 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
|
||||
Reference in New Issue
Block a user