diff options
Diffstat (limited to 'docker')
-rw-r--r-- | docker/README.md | 38 | ||||
-rwxr-xr-x | docker/add_user.sh | 4 | ||||
-rw-r--r-- | docker/docker-compose.yml | 25 | ||||
-rwxr-xr-x | docker/filebin_starter.sh | 42 |
4 files changed, 109 insertions, 0 deletions
diff --git a/docker/README.md b/docker/README.md new file mode 100644 index 000000000..32a812cda --- /dev/null +++ b/docker/README.md @@ -0,0 +1,38 @@ +# Filebin Docker Container + +## Filebin +Filebin is a paste service developed by Florian Pritz [https://paste.xinu.at/](https://paste.xinu.at/) + +## Dockerfile +[Dockerfile](https://git.server-speed.net/users/flo/filebin/tree/docker/Dockerfile) + +## Ports +The PHP webserver is listening on ```8080``` + +## Volumes + +- **Uploaded Data:** uploaded files are saved to ```/var/lib/filebin/filebin/data/uploads``` +- **Advanced Configuration:** the configuration is located at ```/var/lib/filebin/filebin/application/config``` + +## Environment Variables +- **FB_DB_HOSTNAME:** the hostname of the mysql/mariadb server +- **FB_DB_USERNAME:** the username for the mysql/mariadb server +- **FB_DB_PASSWORD:** the password for the mysql/mariadb server +- **FB_DB_DATABASE:** the database on the mysql/mariadb for Filebin + +- **FB_CONTACT_NAME:** Contact Name +- **FB_CONTACT_MAIL:** Contact E-Mail (will be used as email for the first user) + +## First User +The first user is **admin** with the password **admin** + +## Run + +### with docker-compose +```bash +docker-compose build +docker-compose up +``` + +### with linked mysql/mariadb database server +```docker run -ti --rm -p <port>:8080 --link mdb:mysql -e FB_DB_HOSTNAME=mysql -e FB_DB_USERNAME=filebin_usr -e FB_DB_PASSWORD=test -e FB_DB_DATABASE=filebin -e FB_CONTACT_NAME="John Doe" -e FB_CONTACT_MAIL="john.doe@localmail.local" sebastianrakel/filebin``` diff --git a/docker/add_user.sh b/docker/add_user.sh new file mode 100755 index 000000000..4342528ef --- /dev/null +++ b/docker/add_user.sh @@ -0,0 +1,4 @@ +#!/bin/bash + +cd ${FILEBIN_DIR} +printf "%s\n%s\n%s\n" admin ${FB_CONTACT_MAIL} admin | php index.php user add_user diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml new file mode 100644 index 000000000..03bc37f59 --- /dev/null +++ b/docker/docker-compose.yml @@ -0,0 +1,25 @@ +version: '2' +services: + mysql: + image: mysql + environment: + - MYSQL_DATABASE=filebin + - MYSQL_USER=filebin + # TODO: can this be set to a random password? + - MYSQL_PASSWORD=filebin-docker-demo + - MYSQL_RANDOM_ROOT_PASSWORD=yes + + filebin: + links: + - mysql + build: .. + ports: + - "8080:8080" + environment: + - FB_DB_HOSTNAME=mysql + - FB_DB_USERNAME=filebin + - FB_DB_PASSWORD=filebin-docker-demo + - FB_DB_DATABASE=filebin + - FB_CONTACT_NAME=John Doe + - FB_CONTACT_MAIL=root@example.local + diff --git a/docker/filebin_starter.sh b/docker/filebin_starter.sh new file mode 100755 index 000000000..4fa50d583 --- /dev/null +++ b/docker/filebin_starter.sh @@ -0,0 +1,42 @@ +#!/bin/bash + +function set_config() { + FB_ENCRYPTION_KEY=`< /dev/urandom tr -dc _A-Z-a-z-0-9 | head -c32` + sed -i "s/\$config\['encryption_key'\] = ''/\$config['encryption_key'] = '${FB_ENCRYPTION_KEY}'/" ${FILEBIN_DIR}/application/config/config-local.php +} + +function set_database_config() { + sed -i "s/\$db\['default'\]\['hostname'\] = .*/\$db['default']['hostname'] = \"${FB_DB_HOSTNAME}\";/" ${FILEBIN_DIR}/application/config/database.php + sed -i "s/\$db\['default'\]\['username'\] = .*/\$db['default']['username'] = \"${FB_DB_USERNAME}\";/" ${FILEBIN_DIR}/application/config/database.php + sed -i "s/\$db\['default'\]\['password'\] = .*/\$db['default']['password'] = \"${FB_DB_PASSWORD}\";/" ${FILEBIN_DIR}/application/config/database.php + sed -i "s/\$db\['default'\]\['database'\] = .*/\$db['default']['database'] = \"${FB_DB_DATABASE}\";/" ${FILEBIN_DIR}/application/config/database.php +} + +# wait for DB to be ready +while ! nc "$FB_DB_HOSTNAME" 3306 </dev/null >/dev/null; do + echo "Waiting for database" + sleep 0.5 +done + + +if [[ ! -e $FILEBIN_DIR/application/config/config-local.php ]]; then + echo "no config found, new config will be generated" + cp $FILEBIN_DIR/application/config/example/config-local.php ${FILEBIN_DIR}/application/config/config-local.php + + set_config + set_database_config + + CONTACT_INFO_FILE=${FILEBIN_DIR}/data/local/contact-info.php + cp $FILEBIN_DIR/data/local/examples/contact-info.php ${CONTACT_INFO_FILE} + + sed -i "s/John Doe/${FB_CONTACT_NAME}/" ${CONTACT_INFO_FILE} + sed -i "s/john.doe@example.com/${FB_CONTACT_MAIL}/" ${CONTACT_INFO_FILE} + + ${FILEBIN_DIR}/scripts/install-git-hooks.sh + ${FILEBIN_DIR}/git-hooks/post-merge + + ${FILEBIN_HOME_DIR}/add_user.sh +fi + +cd $FILEBIN_DIR/public_html +php -S 0.0.0.0:8080 |