forked from admpub/nging
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose-sqlite.yml
More file actions
24 lines (24 loc) · 945 Bytes
/
docker-compose-sqlite.yml
File metadata and controls
24 lines (24 loc) · 945 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
version: '3'
services:
nging:
container_name: nging # 先锋版为 nging-dockermgr
image: admpub/nging:latest # 先锋版为 admpub/nging-dockermgr:latest
expose:
- 9999
- 80
- 443
ports:
- 9999:9999
- 80:80
- 443:443
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