11 lines
229 B
YAML
11 lines
229 B
YAML
services:
|
|
nginx-www:
|
|
image: nginx:alpine
|
|
restart: always
|
|
container_name: nginx-www
|
|
user: '101:101'
|
|
ports:
|
|
- 8082:80
|
|
volumes:
|
|
- ./nginx.conf:/etc/nginx/nginx.conf
|
|
- ./index:/mnt/index
|