Advertisement
techblog

uptime kuma compose

Jul 17th, 2023
1,066
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.32 KB | None | 0 0
  1. # Simple docker-compose.yml
  2. # You can change your port or volume location
  3.  
  4. version: '3.3'
  5.  
  6. services:
  7.   uptime-kuma:
  8.     image: louislam/uptime-kuma:1
  9.     container_name: uptime-kuma
  10.     volumes:
  11.      - ./uptime-kuma-data:/app/data
  12.     ports:
  13.      - 3001:3001  # <Host Port>:<Container Port>
  14.     restart: always
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement