misc: organize more of examples into subdirs as compose projects (#3608)

This commit is contained in:
Geoff Bourne
2025-08-10 09:06:58 -05:00
committed by GitHub
parent 5bd6287f52
commit 2fbc804f3e
31 changed files with 0 additions and 176 deletions

View File

@@ -0,0 +1,23 @@
services:
mc:
image: itzg/minecraft-server
tty: true
stdin_open: true
ports:
- "25565:25565"
environment:
EULA: "TRUE"
restart: unless-stopped
volumes:
# attach the relative directory 'data' to the container's /data path
- ./data:/data
ngrok:
image: ngrok/ngrok:latest
command:
- "tcp"
- "mc:25565"
environment:
NGROK_AUTHTOKEN: <YourAuthTokenHere>
ports:
- 4551:4551