-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
120 lines (118 loc) · 2.43 KB
/
docker-compose.yaml
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
118
119
120
version: "3.7"
services:
nginx:
image: nginx:alpine
container_name: nginx
environment:
- DOMAIN=phpdot.me
- ENVIRONMENT=dev
- NGINX_ENVSUBST_TEMPLATE_SUFFIX=.tmpl
networks:
- internal
ports:
- "80:80"
- "443:443"
volumes:
- ./etc/nginx/snippet.d:/etc/nginx/snippet.d:ro
- ./etc/nginx/templates.d:/etc/nginx/templates:ro
- ./etc/letsencrypt:/etc/letsencrypt:ro
restart: unless-stopped
postgres:
image: postgres:14.3-alpine
container_name: postgres
environment:
- POSTGRES_USER=root
- POSTGRES_PASSWORD=root
networks:
- internal
volumes:
- ./etc/pgsql/init.d:/docker-entrypoint-initdb.d
- postgres:/var/lib/postgresql/data
restart: unless-stopped
mongo:
image: mongo:5.0.6
container_name: mongo
volumes:
- mongo:/data/db
networks:
- internal
restart: unless-stopped
strapi3:
image: strapi/strapi:3-alpine
container_name: strapi3
env_file:
- ./env/strapi3.env
networks:
- internal
depends_on:
- postgres
strapi4:
image: strapi/strapi:4.3.4-alpine
container_name: strapi4
env_file:
- ./env/strapi4.env
networks:
- internal
depends_on:
- postgres
squidex:
image: squidex/squidex:7.0.3
container_name: squidex
env_file:
- ./env/squidex.env
networks:
- internal
depends_on:
- mongo
directus:
image: directus/directus:latest
container_name: directus
env_file:
- ./env/directus.env
networks:
- internal
depends_on:
- postgres
restart: unless-stopped
nocodb:
image: nocodb/nocodb:latest
container_name: nocodb
env_file:
- ./env/nocodb.env
networks:
- internal
depends_on:
- postgres
volumes:
- nocodb:/usr/app/data
restart: unless-stopped
baserow:
image: baserow/baserow:1.12.0
container_name: baserow
env_file:
- ./env/baserow.env
networks:
- internal
depends_on:
- postgres
volumes:
- baserow:/baserow/data
restart: unless-stopped
tooljet:
image: tooljet/tooljet-ce:latest
container_name: tooljet
env_file:
- ./env/tooljet.env
networks:
- internal
depends_on:
- postgres
command: npm run start:prod
restart: unless-stopped
networks:
internal:
volumes:
postgres: ~
mongo: ~
nocodb: ~
baserow: ~