You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
442 B
14 lines
442 B
version: '3'
|
|
services:
|
|
survey-nginx:
|
|
container_name: survey-nginx
|
|
build:
|
|
context: ./survey-nginx
|
|
volumes:
|
|
- ./survey-nginx/htdocs:/usr/share/nginx/html
|
|
# - ./survey-nginx/secure_html:/secure_html
|
|
- ./survey-nginx/secure_html:/usr/share/nginx/html/secure_html
|
|
- ./survey-nginx/cgi-bin:/usr/share/nginx/html/cgi-bin
|
|
- ./survey-nginx/log/web:/var/log/nginx/web
|
|
ports:
|
|
- "8081:80"
|
|
|