mirror of
https://gitee.com/kennylee/docker.git
synced 2024-12-04 04:48:39 +08:00
13 lines
379 B
YAML
13 lines
379 B
YAML
version: '2'
|
|
services:
|
|
web:
|
|
image: registry.cn-hangzhou.aliyuncs.com/kennylee/nginx:alpine-1.11.9
|
|
container_name: "nginx"
|
|
ports:
|
|
- "80:80"
|
|
volumes:
|
|
- ./data/html/:/usr/share/nginx/html
|
|
- ./config/nginx.conf:/etc/nginx/nginx.conf
|
|
- ./config/conf.d/:/etc/nginx/conf.d/
|
|
restart: on-failure
|