-
-
Notifications
You must be signed in to change notification settings - Fork 143
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
30 lines (26 loc) · 738 Bytes
/
docker-compose.yml
File metadata and controls
30 lines (26 loc) · 738 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# This docker-compose file is intended for local testing and NOT intended to be
# production ready.
version: "3"
services:
keila:
image: pentacent/keila:latest
ports:
- "4000:4000"
depends_on:
- postgres
build:
context: ../
dockerfile: ops/Dockerfile
environment:
SECRET_KEY_BASE: "${YOUR_SECRET_KEY}"
DB_URL: "postgres://postgres:postgres@postgres/postgres"
URL_HOST: "${YOUR_URL_HOST}"
MAILER_SMTP_HOST: "${YOUR_MAILER_SMTP_HOST}"
MAILER_SMTP_USER: "${YOUR_MAILER_SMTP_USER}"
MAILER_SMTP_PASSWORD: "${YOUR_MAILER_SMTP_PASSWORD}"
postgres:
image: postgres:alpine
ports:
- "5432:5432"
environment:
POSTGRES_PASSWORD: postgres