rocketchat-docker-compose

Usage

Create a new docker network:
docker network create traefik-public
Create acme.json file

This file will be used to store letsencrypt data.

cd ~/
touch acme.json
chmod 600 acme.json
Clone repository
git clone https://github.com/mirrorrim/rocketchat-docker-compose.git rocketchat
Create and populate .env file
cd rocketchat
cp .env.sample .env
Start rocketchat
docker-compose up -d
Dump
docker exec mongo sh -c 'mongodump --archive --gzip' > db.dump
Restore
docker exec -i mongo sh -c 'mongorestore --archive --drop --gzip' < db.dump