Fix formatting in docs (#379)

This commit is contained in:
Pranav Raj S
2019-12-23 13:00:22 +05:30
committed by Sojan Jose
parent 1143893d9c
commit 32efe8676f
3 changed files with 17 additions and 18 deletions

View File

@@ -3,25 +3,23 @@ path: "/docs/installation-guide-docker"
title: "Docker Setup and Debugging Guide"
---
# Docker Setup and Debugging Guide
## development environment
### Development environment
After cloning the repo and installing docker on your machine, run the following command from the root directory of the project.
```
```bash
docker-compose build
```
After building the image or after destroying the stack you would have to reset the database using following command
```
```bash
docker-compose run rails bundle exec rails db:reset
```
### Running the app
```
```bash
docker-compose run --service-port rails
```
@@ -30,13 +28,13 @@ docker-compose run --service-port rails
you can also use the below command instead to run the app and see the full logs.
```
```bash
docker-compose up
```
### Destroying the complete composer stack
```
```bash
docker-compose down
```
@@ -44,13 +42,13 @@ docker-compose down
For running the complete rspec tests
```
```bash
docker-compose run rails bundle exec rspec
```
For running specific test:
```
```bash
docker-compose run rails bundle exec rspec spec/<path-to-file>:<line-number>
```
@@ -58,7 +56,7 @@ docker-compose run rails bundle exec rspec spec/<path-to-file>:<line-number>
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:
```
```bash
docker-compose -f docker-compose.production.yaml build
docker-compose -f docker-compose.production.yaml up
```
```