Skip to content
Snippets Groups Projects
Commit b4a9f81d authored by Patrick Jentsch's avatar Patrick Jentsch
Browse files

Fix README

parent 4016af23
No related branches found
No related tags found
No related merge requests found
...@@ -49,13 +49,14 @@ username@hostname:~$ docker-compose build ...@@ -49,13 +49,14 @@ username@hostname:~$ docker-compose build
### Start your instance ### Start your instance
``` bash ``` bash
# For background execution add the -d flag # For background execution add the -d flag
username@hostname:~$ docker-compose up docker-compose up
# To scale your app use the following command after starting it normally # To scale your app use the following command after starting it normally
username@hostname:~$ docker-compose -f docker-compose.yml \ docker-compose \
-f docker-compose.override.yml -f docker-compose.yml \
-f docker-compose.scale.yml -f docker-compose.override.yml \
up -f docker-compose.scale.yml \
-d up \
--no-recreate -d \
--scale nopaque=<NUM_INSTANCES> --no-recreate \
--scale nopaque=<NUM_INSTANCES>
``` ```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment