mirror of
https://github.com/roundcube/roundcubemail-docker.git
synced 2026-04-16 01:32:05 +02:00
All executable files present in /entrypoint-tasks/pre-setup/ and /entrypoint-tasks/post-setup/ are run at the beginning or at the end, respectively, of the actual entrypoint-script. Each of the executed files receive the CMD given to the container as their arguments. This allows e.g. to change a plugin's config, or install a technical requirement of a plugin that is to be installed. This feature is not implemented in the images for Roundcube v1.5, since they are not well maintained and will be dropped soon, anyways.
7 lines
73 B
Bash
Executable File
7 lines
73 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
touch /tmp/something
|
|
touch /tmp/anotherfile
|