Nginx Static
Nginx to serve static files (build result)
Docker Compose
version: "3.6"
services:
app:
image: nginx
container_name: nginx-cv
volumes:
- /docker-data/nginx-cv/html:/usr/share/nginx/html
restart: unless-stopped
ports:
- 8001:80