Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,26 +27,26 @@ python manage.py sample_data

Initial auth data: admin/123123

If docker and fig are not installed already (Not mandatory):
If docker and docker-compose are not installed already (Not mandatory):
--------------------------------------------
Refer to (http://docs.docker.com/installation/) for detailed installation instructions.

```
curl -sSL https://get.docker.com/ubuntu/ | sudo sh
sudo pip install fig
curl -sSL https://get.docker.com/ | sudo sh
sudo pip install docker-compose
```

Create aliases for docker and fig to avoid running them with sudo everytime.
Create aliases for docker and docker-compose to avoid running them with sudo everytime.
Append the following lines to your ~/.bashrc or ~/.zshrc

```
alias docker='sudo docker'
alias fig='sudo fig'
alias docker-compose='sudo docker-compose'
```

Finally, run
```
fig up
docker-compose up
```


Expand Down
File renamed without changes.