mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2025-02-18 03:20:47 +01:00
17 lines
262 B
YAML
17 lines
262 B
YAML
|
|
||
|
version: '3'
|
||
|
|
||
|
volumes:
|
||
|
uptimekuma-data:
|
||
|
driver: local
|
||
|
|
||
|
services:
|
||
|
uptimekuma:
|
||
|
image: louislam/uptime-kuma:latest
|
||
|
container_name: uptimekuma
|
||
|
ports:
|
||
|
- "3001:3001"
|
||
|
volumes:
|
||
|
- uptimekuma-data:/app/data
|
||
|
restart: unless-stopped
|