Use DATABASE_URL compatible with PostgreSQL JDBC driver

clj-a2png
Marcin Kulik 7 years ago
parent f868dc19d4
commit 70fd5608f6

@ -12,7 +12,7 @@ BASE_URL=http://localhost:3000
SECRET_KEY_BASE=
## PostgreSQL connection URL.
## Default: postgresql://postgres@postgres/postgres
## Default: postgresql://postgres/postgres?user=postgres
# DATABASE_URL=
## Redis connection URL.

@ -110,7 +110,7 @@ RUN lein uberjar
COPY . /app
ENV DATABASE_URL "postgresql://postgres@postgres/postgres"
ENV DATABASE_URL "postgresql://postgres/postgres?user=postgres"
ENV REDIS_URL "redis://redis:6379"
# compile terminal.c

Loading…
Cancel
Save