
docker-composename: "kms"services: app: image: "11notes/kms:1.0.1" environment: TZ: "Europe/Zurich" volumes: - "var:/kms/var" ports: - "1688:1688/tcp" restart: "always" gui: image: "11notes/kms-gui:1.0.1" depends_on: app: condition: "service_healthy" restart: true environment: TZ: "Europe/Zurich" volumes: - "var:/kms/var" ..

services: emulatorjs: image: lscr.io/linuxserver/emulatorjs:latest container_name: emulatorjs environment: - PUID=1000 - PGID=1000 - TZ=Etc/UTC - SUBFOLDER=/ #optional volumes: - /path/to/config:/config - /path/to/data:/data ports: - 3000:3000 - 80:80 - 4001:4001 #optional restart: unless-stoppedhttps://docs.linuxserver.io/images/do..

services: kuma: image: louislam/uptime-kuma:latest container_name: uptime-kuma ports: - 3001:3001 volumes: - ./data:/app/data restart: always https://github.com/louislam/uptime-kuma/wiki HomeA fancy self-hosted monitoring tool. Contribute to louislam/uptime-kuma development by creating an account on GitHub.github.com

version: '3.0'services: wallos: container_name: wallos image: bellamy/wallos:latest ports: - "8282:80/tcp" environment: TZ: 'Asia/Seoul' # Volumes store your data between container upgrades volumes: - './db:/var/www/html/db' - './logos:/var/www/html/images/uploads/logos' restart: unless-stopped https://hub.docker.com/r/bellamy/wallos Docker hub.dock..
version: '3.3'services: komga: image: gotson/komga container_name: komga volumes: - ./config:/config - ./data:/data - ./etc/timezone:/etc/timezone read_only: true ports: - 25600:25600 user: "0:0" environment: - JAVA_TOOL_OPTIONS=-Xmx2g - TZ=Asia/Seoul restart: unless-stopped https://komga.org/docs/installation/docker/ Run with Docker | Komga..