15 lines
260 B
YAML
15 lines
260 B
YAML
services:
|
|
nginx:
|
|
image: nginx
|
|
hostname: nginx
|
|
restart: unless-stopped
|
|
ports:
|
|
- 8080:80
|
|
volumes:
|
|
- ./nginx.conf:/etc/nginx/nginx.conf
|
|
- ./config:/etc/nginx/conf.d
|
|
- nginx-logs:/var/log/nginx
|
|
|
|
volumes:
|
|
nginx-logs:
|