forked from vivid-planet/comet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
51 lines (47 loc) · 1.48 KB
/
docker-compose.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
version: "3.5"
services:
postgres:
image: bitnami/postgresql:12
tty: true
volumes:
- postgres:/bitnami/postgresql
ports:
- "${POSTGRESQL_PORT}:5432"
environment:
POSTGRESQL_USER: postgres
POSTGRESQL_PASSWORD: ${POSTGRESQL_PWD_DECODED}
POSTGRESQL_DATABASE: ${POSTGRESQL_DB}
networks:
- postgres
imgproxy:
image: darthsim/imgproxy:latest
volumes:
- ./demo/uploads:/uploads:ro
ports:
- ${IMGPROXY_PORT}:8080
environment:
IMGPROXY_KEY: ${IMGPROXY_KEY}
IMGPROXY_SALT: ${IMGPROXY_SALT}
IMGPROXY_MAX_SRC_RESOLUTION: 70
IMGPROXY_LOCAL_FILESYSTEM_ROOT: "/uploads"
IMGPROXY_USE_ABS: ${IMGPROXY_USE_ABS}
IMGPROXY_ABS_NAME: ${AZURE_ACCOUNT_NAME}
IMGPROXY_ABS_KEY: ${AZURE_ACCOUNT_KEY}
IMGPROXY_USE_S3: ${IMGPROXY_USE_S3}
IMGPROXY_S3_REGION: ${S3_REGION}
IMGPROXY_S3_ENDPOINT: ${S3_ENDPOINT}
AWS_ACCESS_KEY_ID: ${S3_ACCESS_KEY_ID}
AWS_SECRET_ACCESS_KEY: ${S3_SECRET_ACCESS_KEY}
jaeger:
image: jaegertracing/all-in-one:1
ports:
- ${JAEGER_UI_PORT}:16686
- ${JAEGER_OLTP_PORT}:4318 #OLTP over HTTP
environment:
COLLECTOR_OTLP_ENABLED: "true"
networks:
postgres:
driver: bridge
volumes:
postgres:
driver: local