Skip to content

Commit

Permalink
update quickstart.md to add docker restart policy
Browse files Browse the repository at this point in the history
  • Loading branch information
sneak authored Sep 24, 2017
1 parent 236f5c5 commit 4cbd306
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions doc/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Use docker:
```
docker run \
-d -p 2001:2001 -p 8090:8090 --name steemd-default \
steemit/steem
--restart unless-stopped steemit/steem
```
#### Low memory node?
Above runs low memory node, which is suitable for:
Expand All @@ -19,6 +19,7 @@ For full api node use:
docker run \
--env USE_WAY_TOO_MUCH_RAM=1 --env USE_FULL_WEB_NODE=1 \
-d -p 2001:2001 -p 8090:8090 --name steemd-full \
--restart unless-stopped \
steemit/steem
```
### Configure for your use case
Expand All @@ -40,7 +41,10 @@ Do not add other APIs or plugins unless you know what you are doing.
This configuration exists in Docker with the following command

```
docker run -d --env TRACK_ACCOUNT="yourexchangeid" steemit/steem
docker run -d --env TRACK_ACCOUNT="yourexchangeid" \
--name steemd \
--restart unless-stopped \
steemit/steem
```

### Resources usage
Expand Down

0 comments on commit 4cbd306

Please sign in to comment.