nginx/docker-compose.yml

9 lines
159 B
YAML

version: '3.1'
services:
webapp:
image: nginx:latest
restart: always
ports:
- "3002:80"
volumes:
- ./static:/usr/share/nginx/html