Skip to content

Commit

Permalink
Merge pull request #526 from schuyler1d/sky-docs1
Browse files Browse the repository at this point in the history
document issue with filesystem error and docker. fixes #517
  • Loading branch information
joshsmith committed Dec 3, 2016
2 parents a520a76 + 4dad4e5 commit fcaa0b2
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion docs/INSTALLING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

### Requirements

You will need to install [Docker](https://docs.docker.com/engine/installation/).
You will need to install [Docker](https://docs.docker.com/engine/installation/) with at least Docker Compose version 1.9.

Here are some direct links if you're on [Mac OS X](https://docs.docker.com/docker-for-mac/) or [Windows](https://docs.docker.com/docker-for-windows/).

Expand Down Expand Up @@ -77,6 +77,23 @@ docker-compose build
docker-compose up
```
If you see an error like this at the bottom of the output:
```shell
== Compilation error on file lib/phoenix/token.ex ==
** (CompileError) lib/phoenix/token.ex:144: Phoenix.Socket.__struct__/0 is undefined, cannot expand struct Phoenix.Socket
(stdlib) lists.erl:1354: :lists.mapfoldl/3
could not compile dependency :phoenix, "mix compile" failed. You can recompile this dependency with "mix deps.compile phoenix", update it with "mix deps.update phoenix" or clean it with "mix deps.clean phoenix"
```
Try stopping the Docker processes and then running:
```shell
docker-compose run web mix deps.clean --all phoenix
docker-compose up
```
### Seed the database
You'll probably want to seed the database. You can do this with the following command:
Expand Down

0 comments on commit fcaa0b2

Please sign in to comment.