summaryrefslogtreecommitdiffstats
path: root/busuanzi/docker-compose.yaml
blob: fc3cb293eae092271ee0dae8f5e1be2246d7da8a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
version: "3"
services:
  redis:
    image: "redis:alpine"
    restart: always
    volumes:
      - ./data/redis:/data
  
  busuanzi:
    image: "dejavumoe/busuanzi:latest"
    restart: always
    ports:
      - "127.0.0.1:8956:8080"
    volumes:
       - ./data/busuanzi:/app/expose
    links:
      - redis
    depends_on:
      - redis
    environment:
      LOG_ENABLE: true
      API_SERVER: http:\/\/127.0.0.1:8080\/api