0
0
mirror of https://github.com/louislam/uptime-kuma.git synced 2024-11-28 10:36:39 +01:00
uptime-kuma/docker/docker-compose.yml

15 lines
313 B
YAML
Raw Normal View History

# Simple docker-compose.yml
# You can change your port or volume location
2021-07-12 18:23:38 +02:00
version: '3.3'
services:
uptime-kuma:
2022-04-08 13:43:51 +02:00
image: louislam/uptime-kuma:1
2021-07-12 18:23:38 +02:00
container_name: uptime-kuma
volumes:
2022-05-09 07:47:19 +02:00
- ./uptime-kuma-data:/app/data
2021-07-12 18:23:38 +02:00
ports:
2022-05-09 07:47:19 +02:00
- 3001:3001 # <Host Port>:<Container Port>
restart: always