23 lines
509 B
YAML
23 lines
509 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:
|
|
- ADMINAPP_PASSWORD=${ADMINAPP_PASSWORD}
|
|
volumes:
|
|
- /etc/localtime:/etc/localtime:ro
|
|
- ${SRC_FOLDER}/haproxy:/certs:rw
|
|
networks:
|
|
- isard_net
|
|
ports:
|
|
- published: 80
|
|
target: 80
|
|
- published: 443
|
|
target: 443
|