Fix README

This commit is contained in:
Patrick Jentsch 2022-05-17 16:16:22 +02:00
parent 4016af23f0
commit b4a9f81dfb

View File

@ -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>
``` ```