Chore: Update docker setup manual (#504)

* Chore: Update docker setup manual (#503)
This commit is contained in:
Vishnu Narayanan
2020-02-17 14:22:26 +00:00
committed by GitHub
parent 60547b9fb3
commit f00e1dcdc8

View File

@@ -1,76 +1,117 @@
--- ---
path: "/docs/installation-guide-docker" path: "/docs/installation-guide-docker"
title: "Docker Setup and Debugging Guide" title: "Docker Setup"
--- ---
### Development environment ### Pre-requisites
Before proceeding, make sure you have the latest version of `docker` and `docker-compose` installed.
After cloning the repo and installing docker on your machine, run the following command from the root directory of the project. As of now[at the time of writing this doc], we recommend
```bash ```bash
cp .env.example .env $ docker --version
Docker version 19.03.3, build a872fc2f86
$ docker-compose --version
docker-compose version 1.25.3, build d4d1b42b
``` ```
Make changes to the `.env` file as required [Optional]. If you want to set the password for redis when you run ## Development environment
docker-compose, set any string value to the environment variable `REDIS_PASSWORD` in the `.env` file. which will secure the redis running inside docker-compose with this password. This will be automatically picked up by app server and sidekiq, to authenticate while making connections to redis server.
1. Clone the repository.
```bash ```bash
docker-compose build $ git clone https://github.com/chatwoot/chatwoot.git
``` ```
After building the image or after destroying the stack you would have to reset the database using following command 2. Make a copy of the example environment file and modify as required [optional].
```bash ```bash
docker-compose run --rm rails bundle exec rails db:reset $ cp .env.example .env
``` ```
### Running the app If you want to set the password for redis when you run docker-compose, set any string value to the environment variable `REDIS_PASSWORD` in the `.env` file.
This will secure the redis running inside docker-compose with the given password.
Also this will be automatically picked up by the app server and sidekiq, to authenticate while making connections to redis server.
3. Build the images.
```bash ```bash
docker-compose run --rm --service-port rails $ docker-compose build
``` ```
open another terminal and also run below command to run sidekiq in a separate service 4. After building the image or after destroying the stack you would have to reset the database using the following command.
```bash
$ docker-compose run --rm rails bundle exec rails db:reset
``` ```
docker-compose run --rm rails bundle exec sidekiq
5. To run the app,
```bash
$ docker-compose up
``` ```
* Access the rails app frontend by visiting `http://0.0.0.0:3000/` * Access the rails app frontend by visiting `http://0.0.0.0:3000/`
* Access Mailhog inbox by visiting `http://0.0.0.0:8025/` (You will receive all emails going out of the application here) * Access Mailhog inbox by visiting `http://0.0.0.0:8025/` (You will receive all emails going out of the application here)
* Access Sidekiq Web UI by visiting `http://0.0.0.0:3000/sidekiq` (You need to login with administrator account to access sidekiq) * Access Sidekiq Web UI by visiting `http://0.0.0.0:3000/sidekiq` (You need to login with administrator account to access sidekiq)
you can also use the below command instead to run the app and see the full logs. #### Login with credentials
```bash
docker-compose up
``` ```
url: http://localhost:3000
user_name: john@acme.inc
password: 123456
````
### Destroying the complete composer stack 6. To stop the app,
```bash ```bash
docker-compose down $ docker-compose down
``` ```
### Running rspec tests ### Running rspec tests
For running the complete rspec tests For running the complete rspec tests,
```bash ```bash
docker-compose run --rm rails bundle exec rspec $ docker-compose run --rm rails bundle exec rspec
``` ```
For running specific test: For running specific test,
```bash ```bash
docker-compose run --rm rails bundle exec rspec spec/<path-to-file>:<line-number> $ docker-compose run --rm rails bundle exec rspec spec/<path-to-file>:<line-number>
``` ```
## production environment ## Production environment
Sometimes you might want to debug the production build locally. You would first need to set `SECRET_KEY_BASE` environment variable in your .env.example file and then run the below commands: To debug the production build locally, set `SECRET_KEY_BASE` environment variable in your `.env` file and then run the below commands:
```bash ```bash
docker-compose -f docker-compose.production.yaml build $ docker-compose -f docker-compose.production.yaml build
docker-compose -f docker-compose.production.yaml up $ docker-compose -f docker-compose.production.yaml up
```
## Debugging mode
To use debuggers like `byebug` or `binding.pry`, use the following command to bring up the app instead of `docker-compose up`.
```bash
$ docker-compose run --rm --service-port rails
```
## Troubleshooting
If there is an update to any of the following
- `dockerfile`
- `gemfile`
- `package.json`
- schema change
Make sure to rebuild the containers and run `db:reset`.
```bash
$ docker-compose down
$ docker-compose build
$ docker-compose run --rm rails bundle exec rails db:reset
$ docker-compose up
``` ```