Advertisement
Guest User

auto-mcs

a guest
May 18th, 2025
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.74 KB | None | 0 0
  1. services:
  2.   app:
  3.     command: [
  4.       "auto-mcs-ttyd",
  5.       "-W",
  6.       "-t", "disableLeaveAlert=true",
  7.       "-t", "titleFixed=auto-mcs (docker)",
  8.       "-t", "fontSize=20",
  9.       "-t", "theme={\"background\": \"#1A1A1A\"}",
  10.      "-p", "8080",
  11.      "-c", "admin:admin",
  12.      "tmux", "-u", "-2", "new", "-A", "-s", "-c",
  13.      "./auto-mcs"
  14.    ]
  15.  
  16.    image: macarooniman/auto-mcs:latest
  17.    container_name: auto-mcs
  18.    stdin_open: true
  19.    tty: true
  20.    restart: always
  21.    networks:
  22.    ports:
  23.      # ttyd web UI
  24.      - "8080:8080"
  25.  
  26.      # Telepath API (auto-mcs)
  27.      - "7001:7001"
  28.  
  29.      # Add more ports based on the servers you create
  30.      - "25565:25565"
  31.    volumes:
  32.      - $DOCKERDIR/appdata/auto-mcs:/config
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement