This is a docker container for the Meeting room booking system.
- Automatic installation
- Easy updating
- Modern MRBS theme included
- Create a folder for installation:
mkdir /opt/mrbs-docker && cd /opt/mrbs-docker
- Create the file docker-compose.yml with this content:
PLEASE NOTE: If you're trying to run this on a raspberry pi, please use
version: "2" services: mrbs: image: dorianim/mrbs container_name: mrbs environment: - PUID=1000 - PGID=1000 - MRBS_DB_HOST=mrbs-db - MRBS_DB_USER=mrbs-user - MRBS_DB_PASSWORD=mrbs-pass - MRBS_DB_DATABASE=mrbs volumes: - ./config/mrbs:/config ports: - 8888:80 restart: unless-stopped depends_on: - mrbs-db mrbs-db: image: mariadb:latest container_name: mrbs_db environment: - PUID=1000 - PGID=1000 - MYSQL_ROOT_PASSWORD=mrbs-root-pass - TZ=Europe/London - MYSQL_DATABASE=mrbs - MYSQL_USER=mrbs-user - MYSQL_PASSWORD=mrbs-pass volumes: - ./config/mysql:/var/lib/mysql restart: unless-stopped
jsurf/rpi-mariadb
for the database instead ofmariadb
. - Adjust the port (default
8888
) to your needs - Start the mrbs-docker:
docker-compose up -d
- Done! You can reach your mrbs-docker on
localhost:5080
- Adjust your
config.inc.php
in/opt/mrbs-docker/config/mrbs/www/config.inc.php
To update, just go to your installation folder and pull
cd /opt/mrbs-docker
docker-compose pull
docker-compose down && docker-compose up -d