mirror of
https://github.com/de-it-krachten/ansible-role-owncloud_docker
synced 2026-05-14 11:51:52 +00:00
No description
- Jinja 100%
# [1.6.0](https://github.com/de-it-krachten/ansible-role-owncloud_docker/compare/v1.5.0...v1.6.0) (2026-03-15) ### Features * Added support for Fedora 43 ([ |
||
|---|---|---|
| .github/workflows | ||
| defaults | ||
| handlers | ||
| meta | ||
| molecule/default | ||
| tasks | ||
| templates | ||
| .ansible-lint | ||
| .cicd | ||
| .cicd.overwrite | ||
| .collections | ||
| .gitignore | ||
| .releaserc.yml | ||
| .roles | ||
| .yamllint | ||
| CHANGELOG.md | ||
| README.md | ||
ansible-role-owncloud_docker
Sets up a Owncloud using Docker
Dependencies
Roles
None
Collections
- community.docker
Platforms
Supported platforms
- Red Hat Enterprise Linux 81
- Red Hat Enterprise Linux 91
- Red Hat Enterprise Linux 101
- RockyLinux 81
- RockyLinux 91
- RockyLinux 101
- OracleLinux 81
- OracleLinux 91
- OracleLinux 101
- AlmaLinux 81
- AlmaLinux 91
- AlmaLinux 101
- Debian 11 (Bullseye)1
- Debian 12 (Bookworm)1
- Debian 13 (Trixie)1
- Ubuntu 18.04 LTS1
- Ubuntu 20.04 LTS1
- Ubuntu 22.04 LTS1
- Ubuntu 24.04 LTS1
- Fedora 421
- Fedora 431
- Alpine 31
- Docker dind (CI only)
Note: 1 : no automated testing is performed on these platforms
Role Variables
defaults/main.yml
# FQDN of the owncloud server
owncloud_fqdn: owncloud.example.com
# Include nginx webserver
owncloud_nginx: false
# Owncloud port
owncloud_port: 8080
# Owncloud admin user + password
owncloud_admin_username: admin
owncloud_admin_password: admin
# Database type to use
owncloud_db_type: mysql
# Databae root password
owncloud_db_root_password: owncloud
# Name of the database server
owncloud_db_host: mariadb
# Name of the database itself
owncloud_db_name: owncloud
# Name of the database user
owncloud_db_user: owncloud
# Password for the database user
owncloud_db_password: owncloud
# Server for nginx to connect to
owncloud_webapp_host: owncloud
Example Playbook
molecule/default/converge.yml
- name: sample playbook for role 'owncloud_docker'
hosts: all
become: 'yes'
vars:
molecule_driver: '{{ lookup(''env'', ''MOLECULE_DRIVER_NAME'') }}'
owncloud_docker_data: /export/docker/owncloud
roles:
- deitkrachten.openssl
tasks:
- name: Include role 'owncloud_docker'
ansible.builtin.include_role:
name: owncloud_docker