-
Notifications
You must be signed in to change notification settings - Fork 33
/
docker-compose.dev.yml
33 lines (32 loc) · 993 Bytes
/
docker-compose.dev.yml
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
30
31
32
33
version: "3"
services:
#######################################
# Postgres: The database
#######################################
db:
image: postgres:14
restart: always
environment:
POSTGRES_DB: ${POSTGRES_DB:-readflow_test}
POSTGRES_USER: ${POSTGRES_USER:-postgres}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-testpwd}
ports:
- "${POSTGRES_PORT:-5432}:5432"
#######################################
# Imgproxy: Image proxy
#######################################
imgproxy:
image: darthsim/imgproxy
environment:
IMGPROXY_KEY: ${READFLOW_HASH_SECRET_KEY:-736563726574}
IMGPROXY_SALT: ${READFLOW_HASH_SECRET_SALT:-706570706572}
IMGPROXY_ENABLE_WEBP_DETECTION: true
ports:
- "${IMGPROXY_PORT:-8081}:8080"
#######################################
# Goenberg: PDF generator
#######################################
gotenberg:
image: gotenberg/gotenberg:7
ports:
- "${GOTENBERG:-3001}:3000"