You've already forked VixenchromaWebSite
11 lines
259 B
YAML
11 lines
259 B
YAML
services:
|
|
www:
|
|
image: nginx:latest
|
|
container_name: www
|
|
restart: unless-stopped
|
|
ports:
|
|
# - 127.0.0.1:8080:80
|
|
- 8080:80
|
|
volumes:
|
|
- ./html:/usr/share/nginx/html
|
|
- ./nginx_default.conf:/etc/nginx/conf.d/default.conf:ro |