-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcompose.yml
More file actions
102 lines (99 loc) · 2.29 KB
/
compose.yml
File metadata and controls
102 lines (99 loc) · 2.29 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
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
name: plural
services:
# redis:
# container_name: plural-redis
# image: redis/redis-stack-server:7.4.0-v2
# environment:
# - REDIS_ARGS=--save 60 1 --appendonly yes
# ports: # ? only expose for development with redis insight, all applications use internal network
# - 6379:6379
# volumes:
# - redis_data:/data
# networks:
# - plural_net
# restart: unless-stopped
mongo:
container_name: plural-mongo
image: percona/percona-server-mongodb:8.0
ports: # ? only expose for development with mongodb compass, all applications use internal network
- 27017:27017
volumes:
- mongo_data:/data/db
networks:
- plural_net
restart: unless-stopped
# egress-proxy:
# container_name: plural-egress-proxy
# build:
# context: .
# dockerfile: egress-proxy/Dockerfile
# env_file:
# - .env
# networks:
# - plural_net
# restart: unless-stopped
# gateway:
# container_name: plural-gateway
# build:
# context: gateway
# env_file:
# - .env
# networks:
# - plural_net
# depends_on:
# - redis
# restart: unless-stopped
# api:
# container_name: plural-api
# build:
# context: api
# env_file:
# - .env
# ports:
# - 8080:8081
# networks:
# - plural_net
# depends_on:
# - redis
# - egress-proxy
# restart: unless-stopped
# bot:
# container_name: plural-bot
# build:
# context: bot
# env_file:
# - .env
# networks:
# - plural_net
# depends_on:
# - redis
# - gateway
# - egress-proxy
# restart: unless-stopped
# docs: # ? only for development. in production this runs on cloudflare pages
# container_name: plural-docs
# build:
# context: docs
# env_file:
# - .env
# ports:
# - 8080:8080
# networks:
# - plural_net
# restart: unless-stopped
# cdn-worker: # ? only for development. in production this runs on cloudflare workers
# container_name: plural-cdn-worker
# build:
# context: cdn-worker
# env_file:
# - .env
# ports:
# - 8787:8787
# networks:
# - plural_net
# restart: unless-stopped
volumes:
redis_data:
mongo_data:
networks:
plural_net: