[Initial Commit]

This commit is contained in:
Simon Cornet 2023-07-03 10:34:26 +02:00
commit cc3d9e0f25
2 changed files with 34 additions and 0 deletions

24
Dockerfile.linux.amd64 Normal file
View File

@ -0,0 +1,24 @@
# use latest roundcubemail container
FROM roundcube/roundcubemail:latest
# prepare basic stuff
RUN set -e && ln -sf bash /bin/sh
RUN set -e \
&& apt -y update \
&& apt -y upgrade \
&& apt -y install --no-install-recommends --no-install-suggests ca-certificates git wget \
&& apt -y autoremove \
&& apt clean \
&& rm -rf /var/lib/apt/lists/*
# install plugins using composer
RUN set -e \
composer \
--working-dir=/usr/src/roundcubemail/ \
--prefer-dist \
--prefer-stable \
--update-no-dev \
--no-interaction \
--optimize-autoloader \
require \
johndoh/contextmenu

10
README.md Normal file
View File

@ -0,0 +1,10 @@
[![Build Status](https://ci.simoncor.net/api/badges/siempie/hugo-sws/status.svg)](https://ci.simoncor.net/siempie/hugo-sws)
Simple container with Roundcube and plugins pre-installed.
| package | version | link |
|---|---|---|
| roundcube | 1.6.1 | [github](https://github.com/roundcube/roundcubemail)
| johndoh/contextmenu | 3.3.1 | [github](https://github.com/johndoh/roundcube-contextmenu)
The Dockerfile can be found here: [gitea](https://git.simoncor.net/siempie/roundcube)