docker

Docker for services
git clone git://git.unixkoans.com/docker.git
Log | Files | Refs

docker-compose.yml (254B)


1
2
3
4
5
6
7
8
9
10
11
12
13
14
version: '2'

services:
  fluent:
    image: fluent:custom
    restart: always
    ports:
      - 24224:24224
    volumes:
      - ./conf.d:/fluentd/etc
      - ./log:/fluentd/log
    environment:
      - FLUENTD_CONF=fluent.conf
      - FLUENTD_OPT=-vv