-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
74 lines (68 loc) · 1.49 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
version: "3.8"
services:
web:
build:
context: .
dockerfile: ./docker/local/web/Dockerfile
networks:
- network
ports:
- ${WEB_PORT}:80
depends_on:
- api
restart: unless-stopped
indexer:
build:
context: .
dockerfile: ./docker/local/indexer/Dockerfile
command: /start-indexer
volumes:
- ./${EMAILS_DIR}:/app/${EMAILS_DIR}
networks:
- network
env_file:
- .env
environment:
- ENABLE_PROFILING=${INDEXER_ENABLE_PROFILING}
ports:
- ${INDEXER_PROFILING_PORT}:${INDEXER_PROFILING_PORT}
depends_on:
- zinc
restart: on-failure
api:
build:
context: .
dockerfile: ./docker/local/indexer/Dockerfile
command: /start-api
networks:
- network
env_file:
- .env
environment:
- ENABLE_PROFILING=${API_ENABLE_PROFILING}
ports:
- ${API_PORT}:${API_PORT}
- ${API_PROFILING_PORT}:${API_PROFILING_PORT}
depends_on:
- zinc
restart: unless-stopped
zinc:
image: public.ecr.aws/zinclabs/zinc:latest
volumes:
- zinc-data:/data
networks:
- network
environment:
- ZINC_FIRST_ADMIN_USER=${ZINC_ADMIN_USER}
- ZINC_FIRST_ADMIN_PASSWORD=${ZINC_ADMIN_PASSWORD}
- ZINC_SERVER_PORT=${ZINC_PORT}
- ZINC_DATA_PATH=/data
- GIN_MODE=release
ports:
- ${ZINC_PORT}:${ZINC_PORT}
restart: unless-stopped
volumes:
zinc-data: {}
networks:
network:
driver: bridge