forked from Angush/trellobot
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.tmpl.yml
More file actions
36 lines (33 loc) · 857 Bytes
/
docker-compose.tmpl.yml
File metadata and controls
36 lines (33 loc) · 857 Bytes
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
#
# Source code address
# https://hub.docker.com/u/cuongtransc/
#
# syntax: https://docs.docker.com/compose/compose-file/
#
version: "2.4"
services:
trellobot:
image: cuongtransc/trellobot:0.1
networks:
- comp_default
volumes:
- ./trellobot-data/.auth:/app/.auth
- ./trellobot-data/conf.json:/app/conf.json
- ./trellobot-data/.latestActivityID:/app/.latestActivityID
hostname: trellobot
domainname: devopsz.com
cpu_shares: 512
mem_limit: 100M
init: true
# privileged: true
# restart: always
# stdin_open: true
# tty: true
logging:
driver: "json-file"
options:
max-size: "100M"
max-file: "3"
networks:
comp_default:
external: true