2021-10-02 23:54:53 -07:00
|
|
|
# Simple docker-composer.yml
|
|
|
|
# You can change your port or volume location
|
|
|
|
|
|
|
|
version: '3.3'
|
|
|
|
|
|
|
|
services:
|
|
|
|
uptime-kuma:
|
|
|
|
image: louislam/uptime-kuma
|
|
|
|
container_name: uptime-kuma
|
2021-12-20 22:54:13 -08:00
|
|
|
restart: unless-stopped
|
2021-10-02 23:54:53 -07:00
|
|
|
volumes:
|
|
|
|
- ./data:/app/data
|
|
|
|
ports:
|
|
|
|
- 3001:3001
|