-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
40 lines (40 loc) · 789 Bytes
/
docker-compose.yml
File metadata and controls
40 lines (40 loc) · 789 Bytes
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
version: "3"
services:
db:
image: mariadb
restart: always
environment:
- MYSQL_DATABASE
- MYSQL_PASSWORD
- MYSQL_ROOT_PASSWORD
- MYSQL_USER
volumes:
- mysql-data:/var/lib/mysql
minio:
command: server /data
environment:
- MINIO_ACCESS_KEY
- MINIO_SECRET_KEY
image: 'minio/minio'
ports:
- '${MINIO_PORT}:9000'
volumes:
- minio-data:/data
nginx-proxy-manager:
image: jc21/nginx-proxy-manager:latest
restart: always
ports:
- 80:80
- 81:81
- 443:443
volumes:
- ./config.json:/app/config/production.json
- nginx-data:/data
- certbot-data:/etc/letsencrypt
depends_on:
- db
volumes:
certbot-data:
minio-data:
mysql-data:
nginx-data: