-
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathdocker-compose.v2.git.yml
More file actions
179 lines (173 loc) · 4.81 KB
/
Copy pathdocker-compose.v2.git.yml
File metadata and controls
179 lines (173 loc) · 4.81 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
services:
mysql:
image: mariadb:latest
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:latest
container_name: featherpanel_redis
restart: unless-stopped
command: redis-server --appendonly yes --requirepass ${REDIS_PASSWORD:-featherpanel_redis}
volumes:
- redis_data:/data
networks:
- featherpanel_network
depends_on:
mysql:
condition: service_healthy
healthcheck:
test: ["CMD", "redis-cli", "ping"]
timeout: 20s
retries: 10
backend:
#image: ghcr.io/mythicalltd/featherpanel-backend:dev
build:
context: ./backend
dockerfile: Dockerfile
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}
- TRUST_PROXY_HEADERS=true
- PANEL_DOCKER_DEPLOYMENT=true
- FEATHERPANEL_VERSION_CHANNEL=development
- DOCKER_UPDATER_URL=http://host.docker.internal:9418/update
- DOCKER_UPDATER_TOKEN=${DOCKER_UPDATER_TOKEN:-}
extra_hosts:
- "host.docker.internal:host-gateway"
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
- featherpanel_logs:/var/www/html/storage/logs
- featherpanel_translations:/var/www/html/public/translations
- featherpanel_addons:/var/www/html/storage/addons
networks:
- featherpanel_network
frontendv2:
#image: ghcr.io/mythicalltd/featherpanel-frontendv2:dev
build:
context: ./frontendv2
dockerfile: Dockerfile
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",
"wget",
"--quiet",
"--tries=1",
"--spider",
"http://localhost:80",
]
timeout: 20s
retries: 10
ports:
- "${FEATHERPANEL_PANEL_PORT:-4831}:80"
networks:
- featherpanel_network
async-runner:
build:
context: ./runner
dockerfile: Dockerfile
container_name: featherpanel_async_runner
restart: unless-stopped
sysctls:
- net.ipv6.conf.all.disable_ipv6=1
- net.ipv6.conf.default.disable_ipv6=1
- net.ipv6.conf.lo.disable_ipv6=1
environment:
- RUST_LOG=info
- LOG_DIR=/var/www/html/storage/logs
- DB_HOST=mysql
- DB_PORT=3306
- DB_NAME=${MARIADB_DATABASE:-featherpanel}
- DB_USER=${MARIADB_USER:-featherpanel}
- DB_PASS=${MARIADB_PASSWORD:-featherpanel_password}
- REDIS_URL=redis://:${REDIS_PASSWORD:-featherpanel_redis}@redis:6379
volumes:
- featherpanel_config:/app/config:ro
- featherpanel_logs:/var/www/html/storage/logs
depends_on:
mysql:
condition: service_healthy
redis:
condition: service_healthy
frontendv2:
condition: service_healthy
backend:
condition: service_healthy
networks:
- featherpanel_network
volumes:
mariadb_data:
driver: local
redis_data:
driver: local
featherpanel_attachments:
driver: local
featherpanel_config:
driver: local
featherpanel_snapshots:
driver: local
featherpanel_logs:
driver: local
featherpanel_translations:
driver: local
featherpanel_addons:
driver: local
networks:
featherpanel_network:
driver: bridge