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