-
Notifications
You must be signed in to change notification settings - Fork 5
/
docker-compose.yml
47 lines (43 loc) · 954 Bytes
/
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
version: '3'
services:
db:
image: postgres:13.1
environment:
- POSTGRES_PASSWORD=postgres
memcached:
image: memcached
redis1:
image: redis
redis2:
image: redis
application:
build:
context: .
image: "socialsirius/didcomm:${VERSION-dev}"
command: bash -c "python main.py"
environment:
- TEAMCITY_VERSION
- MEMCACHED=memcached
- REDIS=redis://redis1,redis://redis2
- DATABASE_HOST=db
- DATABASE_USER=postgres
- DATABASE_NAME=postgres
- DATABASE_PASSWORD=postgres
- WEBROOT=http://didcomm.server.com
- SEED=000000000000000000000000000RELAY
- LOGLEVEL=DEBUG
- FCM_API_KEY=fake-key
- FCM_SENDER_ID=fake-id
- ACME_DIR=/certs
volumes:
- ./app:/app
- ./certs:/certs
ports:
- "8000:8000"
- "80:80"
- "443:443"
depends_on:
- db
- memcached
- redis1
- redis2