From testing, 1 Week ago, written in Plain Text.
This paste is a reply to y from testing - view diff
Embed
  1. services:
  2.   chromium:
  3.     image: lscr.io/linuxserver/chromium:latest
  4.     container_name: chromium
  5.     security_opt:
  6.       - seccomp:unconfined #optional
  7.     environment:
  8.       - CUSTOM_USER=root     #Replace username
  9.       - PASSWORD=root    #Replace password
  10.       - PUID=1000
  11.       - PGID=1000
  12.       - TZ=Europe/London
  13.       - CHROME_CLI=https://github.com/0xmoei #optional
  14.     volumes:
  15.       - /root/chromium/config:/config
  16.     ports:
  17.       - 3010:3000   #Change 3010 to your favorite port if needed
  18.       - 3011:3001   #Change 3011 to your favorite port if needed
  19.     shm_size: "1gb"
  20.     restart: unless-stopped

captcha