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
``` bash
# 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
username@hostname:~$ docker-compose -f docker-compose.yml \
-f docker-compose.override.yml
-f docker-compose.scale.yml
up
-d
--no-recreate
--scale nopaque=<NUM_INSTANCES>
docker-compose \
-f docker-compose.yml \
-f docker-compose.override.yml \
-f docker-compose.scale.yml \
up \
-d \
--no-recreate \
--scale nopaque=<NUM_INSTANCES>
```