summaryrefslogtreecommitdiff
path: root/Chproxy/21.06.30/chproxy/role/templates/docker-compose.yml.j2
blob: bd325760b874162279d96efec98ec36bbac17092 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
version: '3'

services:
  chproxy:
    image: {{ image_name }}:{{ image_tag }}
    container_name: {{ container_name }}
    ports:
      - "8124:8124"
    volumes:
      - "{{ deploy_dir }}/{{ container_name }}/config:/home/config"
      - "{{ deploy_dir }}/{{ container_name }}/log:/home/log"
    restart: always
    networks:
      olap:
        ipv4_address: 172.20.88.9
networks:
  olap:
    external: true