mirror of
https://github.com/dcarrillo/docker-nginx.git
synced 2025-11-20 01:02:36 +00:00
15 lines
370 B
YAML
15 lines
370 B
YAML
services:
|
|
nginx:
|
|
build:
|
|
context: ..
|
|
args:
|
|
ARG_NGINX_VERSION: ${NGINX_VERSION}
|
|
volumes:
|
|
- ./nginx.conf:/usr/local/nginx/conf/nginx.conf:ro
|
|
- /tmp/nginx-ssl/cert.pem:/tmp/cert.pem:ro
|
|
- /tmp/nginx-ssl/cert.key:/tmp/cert.key:ro
|
|
- /tmp/nginx-ssl/dhparams.pem:/tmp/dhparams.pem:ro
|
|
ports:
|
|
- 80:80
|
|
- 443:443
|