No description
Find a file
semantic-release-bot e6a6aba3a5 chore(release): 1.6.0 [skip ci]
# [1.6.0](https://github.com/de-it-krachten/ansible-role-roundcube_docker/compare/v1.5.0...v1.6.0) (2026-03-15)

### Features

* Added support for Fedora 43 ([541c871](541c871576))
* Drop support for Debian 10 (Buster) ([9ddd8cb](9ddd8cbe38))
* Drop support for Fedora 41 ([77a7678](77a767871f))
* Drop support for openSUSE Leap 15 ([17eab6e](17eab6eb4f))
* Drop support for SUSE Linux Enterprise 15 ([fcaa711](fcaa711a28))
2026-03-15 14:33:54 +00:00
.github/workflows Update CI 2026-03-14 19:59:16 +01:00
defaults Initial commit 2022-11-28 00:39:53 +01:00
handlers feat: Update supported platforms & CI 2024-12-29 15:22:17 +01:00
meta Update CI 2026-03-14 19:59:16 +01:00
molecule/default Update supported platforms & CI 2026-03-14 19:59:16 +01:00
tasks Fix 2023-02-16 15:01:33 +01:00
templates Fix 2023-02-16 15:01:33 +01:00
.ansible-lint Initial commit 2022-11-28 00:39:53 +01:00
.cicd Update CI 2026-03-06 23:07:44 +01:00
.cicd.overwrite Update CI 2026-03-14 19:59:16 +01:00
.collections feat: Add support for Ubuntu 24.04 LTS + Fedora 40 2024-05-31 23:45:44 +02:00
.gitignore feat: Update supported platforms & CI 2024-12-29 15:22:17 +01:00
.releaserc.yml Update CI 2025-09-03 22:23:03 +02:00
.roles Initial commit 2022-11-28 00:39:53 +01:00
.yamllint feat: Update supported platforms & CI 2024-12-29 15:22:17 +01:00
CHANGELOG.md chore(release): 1.6.0 [skip ci] 2026-03-15 14:33:54 +00:00
README.md Update CI 2026-03-14 19:59:16 +01:00

CI

ansible-role-wordpress_docker

Sets up a Roundcube Webmail instance 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


# Location where to put files
# roundcube_docker_data: /export/docker/roundcube

# FQDN of the external server
# roundcube_fqdn: webmail.example.com

# Database type to use
roundcube_db_type: pgsql

# Name of the database server
roundcube_db_host: database

# Name of the database itself
roundcube_db_name: roundcube

# Name of the database user
roundcube_db_user: roundcube

# Password for the database user
roundcube_db_password: roundcube

# Server for nginx to connect to
roundcube_mail_host: webapp

# Roundcube web ports
roundcube_http_port: 80
roundcube_https_port: 443

# IMAP/SMTP server
roundcube_imap_host: localhost
roundcube_imap_port: 143
roundcube_smtp_host: localhost
roundcube_smtp_port: 25

Example Playbook

molecule/default/converge.yml


- name: sample playbook for role 'wordpress_docker'
  hosts: all
  become: 'yes'
  vars:
    molecule_driver: '{{ lookup(''env'', ''MOLECULE_DRIVER_NAME'') }}'
    roundcube_docker_data: /export/docker/roundcube
    roundcube_fqdn: webmail.example.com
    roundcube_db_type: pgsql
    roundcube_db_host: database
    roundcube_db_name: roundcube
    roundcube_db_user: roundcube
    roundcube_db_password: roundcube
    roundcube_mail_host: webapp
    roundcube_https_port: 443
    roundcube_http_port: 80
    roundcube_imap_host: localhost
    roundcube_imap_port: 143
    roundcube_smtp_host: localhost
    roundcube_smtp_port: 25
  roles:
    - deitkrachten.openssl
  tasks:
    - name: Include role 'roundcube_docker'
      ansible.builtin.include_role:
        name: roundcube_docker