15 lines
284 B
YAML
15 lines
284 B
YAML
services:
|
|
nginx:
|
|
image: nginx:alpine
|
|
container_name: nginx-proxy
|
|
ports:
|
|
- "8081:80"
|
|
- "4430:443"
|
|
volumes:
|
|
- ./conf.d:/etc/nginx/conf.d:ro
|
|
- ./nginx.conf:/etc/nginx/nginx.conf:ro
|
|
restart: unless-stopped
|
|
networks:
|
|
- trim-default
|
|
|