blob: 2859892bbd34e1b7abad213f9782ec17a3fc9c9f [file] [log] [blame] [view]
Ales Komarek16d97032014-06-14 13:31:57 +02001
2# Docker
3
4Formulas for working with Docker
5
6## Sample pillar
7
8 django_pki:
9 server:
10 enabled: true
11 secret_key: 'y5m^_^ak6+y5m^_y5m^_^ak6+^ak6+5(f...'
12 default_key_length: 2048
13 default_country: 'CZ'
14 passphrase_min_length: 12
15 workers: 3
16 bind:
17 address: 0.0.0.0
18 port: 8642
19 protocol: tcp
20 source:
21 engine: 'git'
22 address: 'git@repo.domain.com:django/django-pki.git'
23 rev: 'master'
24 cache:
25 engine: 'memcached'
26 host: '127.0.0.1'
27 prefix: 'CACHE_DJANGO_PKI'
28 database:
29 engine: 'postgresql'
30 host: '127.0.0.1'
31 name: 'django_pki'
32 password: 'pwd'
33 user: 'django_pki'
34 mail:
35 host: 'mail.domain.com'
36 password: 'mail-pwd'
37 user: 'mail-user'
38
39## Read more
40
41* https://github.com/saltstack-formulas/docker-formula
42*