Advertisement
Guest User

Untitled

a guest
Jan 29th, 2024
280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.30 KB | None | 0 0
  1. name: palworld
  2. services:
  3.   palworld:
  4.     image: thijsvanloef/palworld-server-docker:latest
  5.     restart: unless-stopped
  6.     stop_grace_period: 30s # Set to however long you are willing to wait for the container to gracefully stop
  7.     ports:
  8.      - "8211:8211/udp"
  9.       - "27015:27015/udp"
  10.     environment:
  11.       PUID: "1000"
  12.       PGID: "1000"
  13.       PORT: "8211" # Optional but recommended
  14.       PLAYERS: "16" # Optional but recommended
  15.       MULTITHREADING: "true"
  16.       RCON_ENABLED: "true"
  17.       RCON_PORT: "25575"
  18.       TZ: UTC
  19.       COMMUNITY: "false"  # Enable this if you want your server to show up in the community servers tab, USE WITH SERVER_PASSWORD!
  20.       SERVER_NAME: My Palworld Server
  21.       SERVER_DESCRIPTION: My Palworld Server
  22.       # SERVER_PASSWORD: worldofpals # Optional but recommended
  23.       # ADMIN_PASSWORD: adminPasswordHere
  24.     volumes:
  25.      - /DATA/AppData/palworld:/palworld/
  26. x-casaos:
  27.   architectures:
  28.    - amd64
  29.   main: palworld
  30.   author: Unknown
  31.   tagline:
  32.     en_us: This is a Docker container to help you get started with hosting your own Palworld dedicated server.
  33.   description:
  34.     en_us: This is a Docker container to help you get started with hosting your own Palworld dedicated server.
  35.   developer: thijsvanloef
  36.   title:
  37.     en_us: Palworld Server
  38.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement