Utility to use in a Jenkins job to download the latest paper and prepare some development and deployment tools
Go to file
2023-04-07 11:42:09 +02:00
build.sh Introduce new container registry 2023-04-07 11:42:09 +02:00
Dockerfile Improved build and run 2022-12-08 15:18:19 +01:00
Readme.md Introduce new container registry 2023-04-07 11:42:09 +02:00
run.sh Introduce new container registry 2023-04-07 11:42:09 +02:00

Docker Compose Example

version: "3"
services:
  paper:
    image: "cr.pandacube.fr/paper:(version)"
    container_name: (server name)
    stdin_open: true # docker run -i
    tty: true        # docker run -t
    user: "1000:1000" # uid and gid of owner of working dir 
    environment:
      - MAXMEM=2048M # Java max heap size
    restart: always
    volumes:
      - .:/data/workdir
      - /etc/timezone:/etc/timezone:ro
      - /etc/localtime:/etc/localtime:ro
    ports:
      - "0.0.0.0:(port):25565"