forked from admpub/nging
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose-mysql.yml
More file actions
43 lines (43 loc) · 1.38 KB
/
docker-compose-mysql.yml
File metadata and controls
43 lines (43 loc) · 1.38 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
version: '3'
services:
nging:
container_name: nging # 先锋版为 nging-dockermgr
image: admpub/nging:latest # 先锋版为 admpub/nging-dockermgr:latest
depends_on:
- mysql
expose:
- 9999
- 80
- 443
ports:
- 9999:9999
- 80:80
- 443:443
links:
- "mysql:mysql"
volumes:
- ./nging-data/nging/data/cache:/home/nging_linux_amd64/data/cache
- ./nging-data/nging/data/ftpdir:/home/nging_linux_amd64/data/ftpdir
- ./nging-data/nging/data/logs:/home/nging_linux_amd64/data/logs
- ./nging-data/nging/data/sm2:/home/nging_linux_amd64/data/sm2
- ./nging-data/nging/myconfig:/home/nging_linux_amd64/myconfig
- ./nging-data/nging/public:/home/nging_linux_amd64/public
#- /var/run/docker.sock:/var/run/docker.sock # 先锋版按需配置
#- /etc/docker/daemon.json:/etc/docker/daemon.json # 先锋版按需配置
command: [ "-p", "9999", "-c", "myconfig/config.yaml" ]
restart: always
mysql:
container_name: nging-mysql
image: mysql
volumes:
- ./nging-data/mysql/data:/var/lib/mysql/
- ./nging-data/mysql/conf:/etc/mysql/conf.d/
- ./nging-data/mysql/run:/var/run/mysqld/
expose:
- 3306
cap_add:
- SYS_NICE
environment:
- MYSQL_ROOT_PASSWORD=root
command: --default-authentication-plugin=mysql_native_password
restart: always