docker-services/README.md

86 lines
1.7 KiB
Markdown
Raw Normal View History

2022-08-05 20:59:55 +02:00
Docker services
===============
The present role :
- installs Docker on host
- installs various services through containers and docker-compose manifest
2022-08-05 21:06:11 +02:00
It has been tested on :
2022-08-05 20:59:55 +02:00
- Debian 9
- Debian 10
- Debian 11
2022-08-05 21:06:11 +02:00
Available services
------------------
- Traefik
- Watchtower
- Grafana
2022-08-05 20:59:55 +02:00
Role variables
---------------
| Variable | Type | Choices | Default | Comment |
|----------------------------------------------|---------|------------------------------------------------------------------------------------|-------------------------|-----------------|
Dependencies
------------
None.
Example Playbook
----------------
2022-08-05 21:06:11 +02:00
```
2022-08-05 20:59:55 +02:00
- hosts: example
ignore_errors: "{{ ansible_check_mode }}" # ignore errors only in check mode !
roles:
- { role: docker-services, tags: ['docker-services'] }
2022-08-05 21:06:11 +02:00
```
2022-08-05 20:59:55 +02:00
Example variables
-----------------
2022-08-05 21:06:11 +02:00
```
2022-08-05 20:59:55 +02:00
---
docker_services:
- traefik
- watchtower
- grafana
traefik_domain: 'mydomain.com'
traefik_letsencrypt_email: 'cert@mydomain.com'
2022-08-05 21:06:11 +02:00
```
2022-08-05 20:59:55 +02:00
TODO
----
2022-08-05 21:08:04 +02:00
- Traefik
- add variables for basic auth in templates
- choose between global auth vs service auth
- Grafana
- Handle providers
- Handle custom dashboards
- Permit anonymous login and user login
- OpenVPN
- needs to be implemented
- SSHPortal
- needs to be implemented
- Loki
- needs to be implemented
- Promtail
- needs to be implemented
- Gitlab
- needs to be implemented
2022-08-05 21:06:11 +02:00
2022-08-05 20:59:55 +02:00
License
-------
MIT Modern
Author Information
------------------
Written by Ludovic Cartier <ludovic.cartier@brainsys.io>