Skip to content

Instantly share code, notes, and snippets.

@ryanbarrett
Created December 15, 2022 17:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryanbarrett/63ad816a8ba623800cf7aab70c740e77 to your computer and use it in GitHub Desktop.
Save ryanbarrett/63ad816a8ba623800cf7aab70c740e77 to your computer and use it in GitHub Desktop.
Uptime Kuma on port 80
# Simple docker-compose.yml
# You can change your port or volume location
version: '3.3'
services:
uptime-kuma:
image: louislam/uptime-kuma:1
container_name: uptime-kuma
volumes:
- ./uptime-kuma-data:/app/data
ports:
- 80:3001 # <Host Port>:<Container Port>
restart: always
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment