forked from MythicalLTD/FeatherPanel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.v2.dev.yml
More file actions
112 lines (107 loc) · 2.9 KB
/
Copy pathdocker-compose.v2.dev.yml
File metadata and controls
112 lines (107 loc) · 2.9 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
103
104
105
106
107
108
109
110
111
112
services:
mysql:
image: mariadb:12.1
container_name: featherpanel_mysql
restart: unless-stopped
environment:
MARIADB_ROOT_PASSWORD: ${MARIADB_ROOT_PASSWORD:-featherpanel_root}
MARIADB_DATABASE: ${MARIADB_DATABASE:-featherpanel}
MARIADB_USER: ${MARIADB_USER:-featherpanel}
MARIADB_PASSWORD: ${MARIADB_PASSWORD:-featherpanel_password}
MARIADB_AUTO_UPGRADE: "1"
volumes:
- mariadb_data:/var/lib/mysql
- ./mysql/init:/docker-entrypoint-initdb.d
networks:
- featherpanel_network
healthcheck:
test:
[
"CMD",
"mariadb-admin",
"ping",
"-h",
"localhost",
"-u",
"root",
"-pfeatherpanel_root",
]
timeout: 20s
retries: 10
redis:
image: redis:8.4-alpine
container_name: featherpanel_redis
restart: unless-stopped
command: redis-server --appendonly yes --requirepass ${REDIS_PASSWORD:-featherpanel_redis}
volumes:
- redis_data:/data
networks:
- featherpanel_network
healthcheck:
test: ["CMD", "redis-cli", "ping"]
timeout: 20s
retries: 10
backend:
image: ghcr.io/mythicalltd/featherpanel-backend:dev
container_name: featherpanel_backend
restart: unless-stopped
environment:
- DATABASE_HOST=mysql
- DATABASE_PORT=3306
- DATABASE_DATABASE=${MARIADB_DATABASE:-featherpanel}
- DATABASE_USER=${MARIADB_USER:-featherpanel}
- DATABASE_PASSWORD=${MARIADB_PASSWORD:-featherpanel_password}
- DATABASE_ENCRYPTION=xchacha20
- REDIS_HOST=redis
- REDIS_PASSWORD=${REDIS_PASSWORD:-featherpanel_redis}
depends_on:
mysql:
condition: service_healthy
redis:
condition: service_healthy
healthcheck:
test: ["CMD", "php", "cli", "help"]
timeout: 20s
retries: 10
volumes:
- featherpanel_attachments:/var/www/html/public/attachments
- featherpanel_config:/var/www/html/storage/config
- featherpanel_snapshots:/var/www/html/storage/backups
networks:
- featherpanel_network
frontendv2:
image: ghcr.io/mythicalltd/featherpanel-frontendv2:dev
container_name: featherpanel_frontendv2
restart: unless-stopped
environment:
- INTERNAL_API_URL=http://backend:80
volumes: []
depends_on:
mysql:
condition: service_healthy
redis:
condition: service_healthy
backend:
condition: service_healthy
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:80"]
timeout: 20s
retries: 10
ports:
- "4831:80"
networks:
- featherpanel_network
volumes:
mariadb_data:
driver: local
redis_data:
driver: local
featherpanel_attachments:
driver: local
featherpanel_config:
driver: local
featherpanel_snapshots:
driver: local
networks:
featherpanel_network:
driver: bridge