Skip to content
Open
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
4 changes: 3 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,13 @@ node:
volumes:
- ./:/beanie
web:
image: trenpixster/elixir:1.3.2
image: elixir:1.5
command: mix phoenix.server
working_dir: /beanie
environment:
MIX_ENV: prod
HEX_HOME: /beanie/.hex/docker
MIX_HOME: /beanie/.mix/docker
PORT: 80
ports:
- 80
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ defmodule Beanie.Mixfile do
[{:phoenix, "~> 1.2.1"},
{:phoenix_pubsub, "~> 1.0"},
{:phoenix_ecto, "~> 3.0"},
{:postgrex, ">= 0.0.0"},
{:postgrex, "~> 0.12.2"},
{:phoenix_html, "~> 2.6"},
{:phoenix_live_reload, "~> 1.0", only: :dev},
{:httpotion, "~>3.0.1"},
Expand Down