19 lines
		
	
	
		
			426 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			426 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| version: '3.8'
 | |
| 
 | |
| services:
 | |
|   server:
 | |
|     image: centos:centos7.9.2009
 | |
|     container_name: chuanqi-server
 | |
|     stdin_open: true
 | |
|     volumes:
 | |
|       - ./server:/data/server
 | |
|       - ./run.sh:/data/run.sh
 | |
|       - ./stop.sh:/data/stop.sh
 | |
|       - ./wch:/etc/yum/wch
 | |
|       - /usr/lib64/mysql:/usr/lib64/mysql
 | |
|     command: "bash /data/run.sh"
 | |
|     network_mode: "host"
 | |
|     restart: unless-stopped
 | |
|     environment:
 | |
|       TZ: Asia/Shanghai
 |