mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-05-29 09:52:35 +02:00

this playbook will install docker then install uptime kuma using docker and install and configure nginx with ssl
10 lines
270 B
YAML
10 lines
270 B
YAML
version: '3.3'
|
|
services:
|
|
uptime-kuma:
|
|
restart: always
|
|
ports:
|
|
- '127.0.0.1:3001:3001'
|
|
volumes:
|
|
- '/compose/volumes/uptime-kuma:/app/data'
|
|
container_name: uptime-kuma
|
|
image: 'louislam/uptime-kuma:latest'
|