Next.js+React web interface for controlling HAProxy clusters (groups of servers), in conjunction with with https://gitgud.io/fatchan/haproxy-protection.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

26 lines
579 B

version: '3.7'
services:
haproxy_panel_next:
restart: always
build: .
ports:
- "127.0.0.1:3000:3000"
environment:
- NODE_ENV=production
volumes:
- type: bind
source: /tmp/acme-tests/.well-known/acme-challenge/
target: /tmp/acme-tests/.well-known/acme-challenge/
- type: bind
source: ./ca/
target: /opt/ca/
haproxy_panel_mongo:
restart: always
image: mongo:latest
ports:
- "127.0.0.1:27017:27017"
networks:
default:
name: haproxy_panel_next
volumes:
mongodb_data_container: