-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.dev.yml
117 lines (110 loc) · 2.41 KB
/
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
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
version: "3.7"
services:
# -----------------------------
# base fiber service
# -----------------------------
nft:
build:
context: .
dockerfile: Dockerfile.dev
volumes:
- .:/build
networks:
- customnetwork
depends_on:
- jaeger
- postgres
ports:
- 1212:8080
- 1213:8081
# -----------------------------
# jaeger servcie
# -----------------------------
jaeger:
image: jaegertracing/all-in-one:1.20
ports:
- "1214:6831/udp"
- "1215:16686"
networks:
- customnetwork
# -----------------------------
# redis database
# -----------------------------
# redis:
# hostname: redis
# image: redis
# networks:
# - customnetwork
# # -----------------------------
# # redis UI
# # -----------------------------
# redis-commander:
# hostname: redis-commander
# image: rediscommander/redis-commander:latest
# restart: always
# environment:
# - REDIS_HOSTS=local:redis:6379
# ports:
# - "9251:8081"
# networks:
# - customnetwork
# -----------------------------
# postgres database
# -----------------------------
postgres:
image: postgres:latest
restart: unless-stopped
volumes:
- psql-nft:/var/lib/postgresql/data
environment:
POSTGRES_PASSWORD: e35YtGPSz6agLyJH
POSTGRES_USER: nftadmin
POSTGRES_DB: nft
ports:
- "5432:5432"
networks:
- customnetwork
# minio:
# image: minio/minio:latest
# volumes:
# - data1-1:/data1
# - data1-2:/data2
# ports:
# - "9000:9000"
# environment:
# MINIO_ACCESS_KEY: minio
# MINIO_SECRET_KEY: minio123
# command: server data1
# healthcheck:
# test:
# [
# "CMD",
# "curl",
# "-f",
# "http://localhost:9000/minio/health/live"
# ]
# interval: 30s
# timeout: 20s
# retries: 3
# -----------------------------
# logstash
# -----------------------------
# logstash:
# image: docker.elastic.co/logstash/logstash:7.16.2
# restart: unless-stopped
# networks:
# - customnetwork
# -----------------------------
# networks
# -----------------------------
networks:
customnetwork:
external: true
# -----------------------------
# volumes
# -----------------------------
volumes:
psql-nft:
driver: local
data1-1:
data1-2: