No description
Find a file
semantic-release-bot f74762b388 chore(release): 1.7.0 [skip ci]
# [1.7.0](https://github.com/de-it-krachten/ansible-role-owncloud_docker/compare/v1.6.0...v1.7.0) (2026-07-26)

### Features

* Added support for Fedora 44 ([ecd37ee](ecd37eec0d))
* Added support for Ubuntu 26.04 LTS ([4e812ac](4e812ac750))
* Drop support for Fedora 42 ([6019c41](6019c41025))
2026-07-26 19:56:40 +00:00
.github/workflows Update CI 2026-07-23 16:26:59 +02:00
defaults Working copy 2022-12-03 00:33:04 +01:00
handlers feat: Update supported platforms & CI 2024-12-29 15:24:08 +01:00
meta Update CI 2026-06-07 17:48:12 +02:00
molecule/default Update CI 2026-07-25 17:34:44 +02:00
tasks Working copy 2022-12-03 00:33:04 +01:00
templates Working copy 2022-12-03 00:33:04 +01:00
.ansible-lint Update CI 2026-06-07 17:48:12 +02:00
.cicd Update CI 2026-06-09 11:13:39 +02:00
.cicd.overwrite Update CI 2026-06-07 17:48:12 +02:00
.collections feat: Add support for Ubuntu 24.04 LTS + Fedora 40 2024-05-31 23:33:17 +02:00
.gitignore feat: Update supported platforms & CI 2024-12-29 15:24:08 +01:00
.releaserc.yml Update CI 2025-09-03 22:25:22 +02:00
.roles Working copy 2022-12-03 00:33:04 +01:00
.yamllint feat: Update supported platforms & CI 2024-12-29 15:24:08 +01:00
CHANGELOG.md chore(release): 1.7.0 [skip ci] 2026-07-26 19:56:40 +00:00
README.md Update CI 2026-06-07 17:48:12 +02:00

CI

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
  • Ubuntu 26.04 LTS1
  • Fedora 431
  • Fedora 441
  • 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