60 lines
1.3 KiB
Markdown
60 lines
1.3 KiB
Markdown
|
# Flame Ansible role
|
||
|
|
||
|
This role installs Mealie via Docker compose.
|
||
|
|
||
|
## Requirements
|
||
|
|
||
|
None
|
||
|
|
||
|
## Role Variables
|
||
|
|
||
|
All variables are listed below (see also `defaults/main.yml`).
|
||
|
|
||
|
```yml
|
||
|
# Version
|
||
|
flame_version: 1.0.0
|
||
|
flame_docker_image_version: "latest"
|
||
|
flame_port: "5005"
|
||
|
flame_password: "flame_password"
|
||
|
|
||
|
# flame paths
|
||
|
flame_root_path: /opt/flame
|
||
|
flame_config_path: "{{ flame_root_path }}/config"
|
||
|
flame_data_path: "{{ flame_root_path }}/data"
|
||
|
flame_skeleton_paths:
|
||
|
- "{{ flame_config_path }}"
|
||
|
- "{{ flame_data_path }}"
|
||
|
```
|
||
|
|
||
|
## Dependencies
|
||
|
|
||
|
You need a machine with docker and docker-compose installed.
|
||
|
|
||
|
## Example Playbook
|
||
|
|
||
|
```yml
|
||
|
- hosts: servers
|
||
|
roles:
|
||
|
- 'laurivan.mealie'
|
||
|
```
|
||
|
|
||
|
## License
|
||
|
|
||
|
This project is licensed under the [MIT](https://opensource.org/licenses/MIT) license - see the [LICENSE](LICENSE) file for details.
|
||
|
|
||
|
![MIT License](https://img.shields.io/badge/license-MIT%20License-brightgreen)
|
||
|
|
||
|
## Author Information
|
||
|
|
||
|
This role was created in 2023 by [Laur Ivan](https://www.laurivan.com).
|
||
|
|
||
|
## Built With
|
||
|
|
||
|
![Ansible](https://img.shields.io/badge/ansible-5.2.0-green.svg)
|
||
|
![Molecule](https://img.shields.io/badge/molecule-3.4.0-green.svg)
|
||
|
![Goss](https://img.shields.io/badge/goss-0.3.16-green.svg)
|
||
|
|
||
|
## Contributing
|
||
|
|
||
|
Please read [CONTRIBUTING.md](CONTRIBUTING.md) for details on our code of conduct, and the process for submitting pull requests to us.
|