AutoDevReverseProxy/docker-compose.yml

25 lines
480 B
YAML
Raw Normal View History

2022-11-04 13:01:36 +01:00
version: "3.4"
services:
hostman:
image: apteno/alpine-jq
command: ["./hostman.sh", "&", "wait", "$!" ]
volumes:
- /var/run/docker.sock:/tmp/docker.sock:ro
- /etc/hosts:/tmp/hosts:rw
- ./hostman.sh:/hostman.sh
nginx-proxy:
image: jwilder/nginx-proxy
ports:
- "80:80"
- "443:443"
volumes:
- /var/run/docker.sock:/tmp/docker.sock:ro
networks:
2022-11-04 13:54:00 +01:00
- proxy
2022-11-04 13:01:36 +01:00
networks:
2022-11-04 13:54:00 +01:00
proxy:
name: proxy
2022-11-04 13:01:36 +01:00
external: false