12 lines
270 B
YAML
12 lines
270 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
nginx:
|
|
image: nginx:alpine
|
|
container_name: website-nginx
|
|
ports:
|
|
- "8097:80"
|
|
volumes:
|
|
- /opt/docker/Website:/usr/share/nginx/html:ro
|
|
- ./nginx.conf:/etc/nginx/conf.d/default.conf:ro
|
|
restart: unless-stopped |