aboutsummaryrefslogtreecommitdiffstats
path: root/terminaldweller.com/haproxy/docker-compose.yaml
blob: f24d17c3fb2f43ae12622194d8a54d32a2b209a3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
version: "3.4"
services:
  haproxy:
    image: haproxy
    ports:
      - "80:80"
      - "443:443"
      - "5222:5222"
      - "5280:5280"
      - "5443:5443"
      - "143:143"
      - "993:993"
      - "110:110"
      - "995:995"
      - "25:25"
      - "465:465"
      - "587:587"
    volumes:
      - ./haproxy.cfg:/usr/local/etc/haproxy/haproxy.cfg:ro
      - ./certs:/usr/local/etc/certs:ro
    networks:
      - proxynet
      - certnet
    restart: unless-stopped
    cap_drop:
      - ALL
  certbot:
    image: certbot
    build:
      context: ./certbot
    ports:
      - "127.0.0.1:9080:80"
      - "127.0.0.1:9443:443"
    networks:
      - certnet
    # restart: unless-stopped
    volumes:
      - ./letsencrypt:/etc/letsencrypt
      - ./webroot:/webroot
      - ./certs:/certs
    # command: ["certonly","--test-cert","--webroot","-w","/webroot","-d","chat.terminaldweller.com","--email","thabogre@gmail.com","--non-interactive","--agree-tos"]
    entrypoint: ["/certbot-entrypoint.sh"]
    environment:
      - DOMAIN=chat.terminaldweller.com
      - EMAIL=devi@mail.terminaldweller.com
  nginx:
    image: nginx
    ports:
      - "127.0.0.1:8080:80"
    networks:
      - certnet
    restart: unless-stopped
    volumes:
      - ./webroot:/usr/share/nginx/html
  udpproxy:
    image: nginx
    ports:
      - "127.0.0.1:3478:3478/udp"
      - "127.0.0.1:5349:5349/udp"
    networks:
      - proxynet
    restart: unless-stopped
    volumes:
      - ./nginx.conf:/etc/nginx/nginx.conf:ro
networks:
  proxynet:
  certnet: