15 lines
No EOL
286 B
YAML
Executable file
15 lines
No EOL
286 B
YAML
Executable file
services:
|
|
nginx:
|
|
image: nginx:latest
|
|
container_name: nginx-proxy
|
|
ports:
|
|
- "80:80"
|
|
- "443:443"
|
|
volumes:
|
|
- ./nginx.conf:/etc/nginx/nginx.conf
|
|
- ./certs:/etc/nginx/certs
|
|
|
|
networks:
|
|
default:
|
|
external:
|
|
name: nginx-proxy-net |