Merge branch '255-fix-make-error' into 'master'

Fix error when running `make` / `docker-compose up`

Closes #255

See merge request framasoft/mobilizon!292
This commit is contained in:
Thomas Citharel 2019-10-23 15:05:28 +02:00
commit 221d10cd85
2 changed files with 9 additions and 6 deletions

View file

@ -5,11 +5,6 @@ init:
start: stop
@bash docker/message.sh "starting Mobilizon with docker"
docker-compose up -d api
docker-compose exec api sh -c "cd js && yarn install && cd ../"
docker-compose exec api mix deps.get
docker-compose exec api mix compile
docker-compose exec api mix ecto.create
docker-compose exec api mix ecto.migrate
@bash docker/message.sh "started"
stop:
@bash docker/message.sh "stopping Mobilizon"

View file

@ -30,7 +30,15 @@ services:
MOBILIZON_DATABASE_USERNAME: postgres
MOBILIZON_DATABASE_DBNAME: mobilizon_dev
MOBILIZON_DATABASE_HOST: postgres
command: "mix phx.server"
command: >
sh -c "cd js &&
yarn install &&
cd ../ &&
mix deps.get &&
mix compile &&
mix ecto.create &&
mix ecto.migrate &&
mix phx.server"
volumes:
pgdata:
.: