-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs: running using docker modified #7216
docs: running using docker modified #7216
Conversation
Codecov Report
@@ Coverage Diff @@
## development #7216 +/- ##
============================================
Coverage 62.98% 62.98%
============================================
Files 259 259
Lines 13042 13042
============================================
Hits 8214 8214
Misses 4828 4828 Continue to review full report at Codecov.
|
Steps are still incorrect. Many of the commands are obsolete |
Hey just tried again and modified the steps once again |
docs/installation/docker.md
Outdated
```bash | ||
export SERVER_NAME=localhost; | ||
``` | ||
|
||
* craete env file using the following command |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* craete env file using the following command | |
* create env file using the following command |
@@ -28,30 +21,10 @@ export SERVER_NAME=localhost; | |||
Add SECRET_KEY in the env file to run properly in production mode . To generate a good secret value run python -c 'import secrets;print(secrets.token_hex())' | |||
|
|||
|
|||
|
|||
* In the same terminal window, run `docker-compose build` to build open-event-server's docker image. This process can take some time. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not needed
docs/installation/docker.md
Outdated
@@ -28,30 +21,10 @@ export SERVER_NAME=localhost; | |||
Add SECRET_KEY in the env file to run properly in production mode . To generate a good secret value run python -c 'import secrets;print(secrets.token_hex())' | |||
|
|||
|
|||
|
|||
* In the same terminal window, run `docker-compose build` to build open-event-server's docker image. This process can take some time. | |||
|
|||
* After build is done, run `docker-compose up` to start the server. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* After build is done, run `docker-compose up` to start the server. | |
* After build is done, run `docker-compose up -d` to start the server. |
docs/installation/docker.md
Outdated
|
||
```sh | ||
cp .env.example .env | ||
``` | ||
Add SECRET_KEY in the env file to run properly in production mode . To generate a good secret value run python -c 'import secrets;print(secrets.token_hex())' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was needed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My apologies added them again , should I remove build image step because docker-compose up -d automatically builds the images and starts the server
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do I need to do change anything further
Fixes #7161
Short description of what this resolves:
This has the updated documentation on how to deploy the open event API Server using docker compose
Changes proposed in this pull request:
Checklist
development
branch.