mirror of
https://gitee.com/kennylee/docker.git
synced 2024-12-03 12:29:35 +08:00
13 lines
357 B
YAML
13 lines
357 B
YAML
version: '2'
|
|
services:
|
|
web:
|
|
image: registry.cn-hangzhou.aliyuncs.com/kennylee/nginx
|
|
container_name: "nginx"
|
|
ports:
|
|
- "80:80"
|
|
volumes:
|
|
- ./data/html/:/usr/share/nginx/html
|
|
- ./conf/nginx.conf:/etc/nginx/nginx.conf
|
|
- ./conf/conf.d/:/etc/nginx/conf.d/
|
|
restart: always
|