No description
Find a file
semantic-release-bot 7d06db6a0c chore(release): 1.6.0 [skip ci]
# [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 ([8c7c830](8c7c830827))
* Drop support for Debian 10 (Buster) ([e4eb1a9](e4eb1a9c2d))
* Drop support for Fedora 41 ([22207b2](22207b2747))
* Drop support for openSUSE Leap 15 ([2c816ff](2c816ffcb8))
* Drop support for SUSE Linux Enterprise 15 ([63dbdd9](63dbdd9eba))
2026-03-15 11:39:50 +00:00
.github/workflows Update CI 2026-03-14 19:49:45 +01: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-03-14 19:49:45 +01:00
molecule/default Update supported platforms & CI 2026-03-14 19:49:45 +01: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 Working copy 2022-12-03 00:33:04 +01:00
.cicd Update CI 2026-03-06 22:57:38 +01:00
.cicd.overwrite Update CI 2026-03-14 19:49:45 +01: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.6.0 [skip ci] 2026-03-15 11:39:50 +00:00
README.md Update CI 2026-03-14 19:49:45 +01: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
  • 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