Skip to content

Commit

Permalink
Fix migrate probs, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
jonator committed Jul 15, 2020
1 parent 6b5a636 commit 2bc56f4
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ mix_test:

build:
docker build --force-rm --build-arg secret=$(SECRET) \
--build-arg db_pass=$(DB_PASS) \
--build-arg db_pass=$(POSTGRES_PASSWORD) \
--build-arg mailgun_api_key=$(MAILGUN_API_KEY) \
--build-arg stripe_api_key=$(STRIPE_API_KEY) \
-t jator/$(APP_NAME):release-$(APP_VSN) \
Expand Down
2 changes: 1 addition & 1 deletion config/releases.exs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ config :kritikos, Kritikos.Repo,
username: "postgres",
password: System.fetch_env!("POSTGRES_PASSWORD"),
database: "kritikosdb",
hostname: "db"
hostname: "db",
pool_size: 15

config :kritikos, KritikosWeb.Mailer,
Expand Down
8 changes: 4 additions & 4 deletions docker-compose-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
version: '3'
services:
db:
image: postgres/alpine
image: postgres:alpine
env_file:
-.env
- .env
ports:
-"5432:5432"
- "5432:5432"
web:
image: jator/kritikos:release-v0.1.17
depends_on:
-db
- db
nginx:
image: nginx:1.17-alpine
ports:
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule Kritikos.MixProject do
def project do
[
app: :kritikos,
version: "0.1.17",
version: "0.1.18",
elixir: "~> 1.10.0",
elixirc_paths: elixirc_paths(Mix.env()),
compilers: [:phoenix, :gettext] ++ Mix.compilers(),
Expand Down

0 comments on commit 2bc56f4

Please sign in to comment.