Files
docker-http-proxy/compose.yaml

39 lines
648 B
YAML
Raw Permalink Normal View History

2025-05-06 00:48:51 +00:00
services:
docker-http-proxy:
container_name: docker-http-proxy
image: jacqueskingram/docker-http-proxy
build:
context: .
dockerfile: Dockerfile
restart: unless-stopped
ports:
- 80:80
- 443:443
volumes:
- /var/run/docker.sock:/tmp/docker.sock:ro
- /var/docker/nginx/html:/usr/share/nginx/html
- /var/docker/nginx/certs:/etc/nginx/certs
- /var/docker/nginx/vhost:/etc/nginx/vhost.d
logging:
options:
max-size: "10m"
max-file: "3"