mirror of
https://github.com/frappe/frappe_docker.git
synced 2024-11-08 14:21:05 +00:00
fa543662ed
* chore: enhance compose.yaml with variables for customize * chore: use default blank values for db and redis variables in compose.yaml * chore: Use env var for HTTP(S) publish ports in overrides * docs: explain use of environment variables for image customization * chore: use ERPNEXT_VERSION as default * docs: fixed spelling errors
20 lines
557 B
YAML
20 lines
557 B
YAML
services:
|
|
frontend:
|
|
labels:
|
|
- traefik.enable=true
|
|
- traefik.http.services.frontend.loadbalancer.server.port=8080
|
|
- traefik.http.routers.frontend-http.entrypoints=web
|
|
- traefik.http.routers.frontend-http.rule=HostRegexp(`{any:.+}`)
|
|
|
|
proxy:
|
|
image: traefik:2.5
|
|
command:
|
|
- --providers.docker
|
|
- --providers.docker.exposedbydefault=false
|
|
- --entrypoints.web.address=:80
|
|
ports:
|
|
- ${HTTP_PUBLISH_PORT:-80}:80
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
|
userns_mode: host
|