22 lines
473 B
YAML
22 lines
473 B
YAML
---
|
|
version: '3.7'
|
|
services:
|
|
isard-apps-haproxy:
|
|
build:
|
|
context: ${BUILD_ROOT_PATH}/docker/haproxy
|
|
dockerfile: Dockerfile
|
|
target: production
|
|
container_name: isard-apps-haproxy
|
|
restart: unless-stopped
|
|
environment:
|
|
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
|
|
volumes:
|
|
- ${DATA_FOLDER}/haproxy/certs:/certs:rw
|
|
networks:
|
|
- isard_net
|
|
ports:
|
|
- published: 80
|
|
target: 80
|
|
- published: 443
|
|
target: 443
|