-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
56 lines (52 loc) · 1.24 KB
/
Copy pathdocker-compose.yml
File metadata and controls
56 lines (52 loc) · 1.24 KB
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
version: '3.8'
services:
etcd:
image: quay.io/coreos/etcd:v3.6.7
command: >
/usr/local/bin/etcd
--name etcd
--data-dir /etcd-data
--listen-client-urls http://0.0.0.0:2379
--advertise-client-urls http://etcd:2379
--listen-peer-urls http://0.0.0.0:2380
--initial-advertise-peer-urls http://etcd:2380
--initial-cluster-token etcd-cluster
--initial-cluster "etcd=http://etcd:2380"
--initial-cluster-state new
--enable-pprof
networks:
- net
volumes:
- etcd_data:/etcd-data
meilisearch:
image: getmeili/meilisearch:v1.34.1
networks:
- net
volumes:
- meilisearch_data:/meili_data
ports:
- "7700:7700"
command: >
/meilisearch
--master-key ${MEILISEARCH_MASTER_KEY}
app:
image: tfs:latest
networks:
- net
volumes:
- data:/app
ports:
- "8181:8181"
- "127.0.0.1:8563:8563"
environment:
- TFS_COPIES=${TFS_COPIES}
- TFS_WEB_ENTRYPOINT=${TFS_WEB_ENTRYPOINT}
- MEILISEARCH_MASTER_KEY=${MEILISEARCH_MASTER_KEY}
- MEILISEARCH_WEB_UI=${MEILISEARCH_WEB_UI}
- MEILISEARCH_URL=${MEILISEARCH_URL}
networks:
net:
volumes:
etcd_data:
meilisearch_data:
data: