Nginx 컨테이너 띄우기docker-compose.ymlservices: nginx: image: nginx container_name: nginx-file-server restart: always ports: - "40405:40405" volumes: - /nginx/file:/storagedefault.conf 설정/etc/nginx/conf.d/default.conf 파일server { listen 40405; listen [::]:40405; server_name localhost; charset utf-8; access_log /var/log/nginx/access.log; error_log /va..