Commit cc3d9e0f authored by Simon Cornet's avatar Simon Cornet
Browse files

[Initial Commit]

parents
Loading
Loading
Loading
Loading

Dockerfile.linux.amd64

0 → 100644
+24 −0
Original line number Diff line number Diff line
# 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

README.md

0 → 100644
+10 −0
Original line number Diff line number Diff line
[![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)