From 51ec6796afe24641a47e2260846e447afe184f2b Mon Sep 17 00:00:00 2001 From: Tai Date: Wed, 26 Aug 2020 14:11:04 -0700 Subject: [PATCH] Added Readme for Rocketchat --- README.md | 3 +++ rocketchat/README.md | 29 +++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 rocketchat/README.md diff --git a/README.md b/README.md index c9375ec..5ef52e7 100644 --- a/README.md +++ b/README.md @@ -30,3 +30,6 @@ https://github.com/StarWhiz/docker_deployment_notes/tree/master/seafile #### Wordpress https://github.com/StarWhiz/docker_deployment_notes/tree/master/wordpress + +#### Rocket.chat +https://github.com/StarWhiz/docker_deployment_notes/tree/master/rocketchat \ No newline at end of file diff --git a/rocketchat/README.md b/rocketchat/README.md new file mode 100644 index 0000000..b27cb5a --- /dev/null +++ b/rocketchat/README.md @@ -0,0 +1,29 @@ +# Minimum File Structure +``` +/home/ +└── ~/ + └── docker/ + └── rocketchat/ + ├── .env + ├── docker-compose.yml +``` + +# Caddyfile +``` +subdomain.example.com { + reverse_proxy rocketchat:3000 +} +``` + +# Things to Modify + +## .env +set your environment variables +https://github.com/StarWhiz/docker_deployment_notes/blob/master/rocketchat/.env + + +## docker-compose.yml +https://github.com/StarWhiz/docker_deployment_notes/blob/master/rocketchat/docker-compose.yml + +## docker-compose up -d +After you have the .env and docker-compose files set up in this directory. Do a ```docker-compose up -d``` to start the containers. \ No newline at end of file