2015-12-04 13:59:07 +00:00
|
|
|
# Entrypoint configuration example
|
|
|
|
|
|
|
|
# This entry should reflect CMD in Dockerfile
|
|
|
|
command: git
|
|
|
|
|
|
|
|
# This is a list with some subcommands to handle
|
|
|
|
# when CMD is not `git` here.
|
|
|
|
# By default, all args started with hyphen are handled.
|
|
|
|
subcommands:
|
|
|
|
- "-*"
|
|
|
|
- clone
|
|
|
|
- init
|
|
|
|
- ls-files
|
|
|
|
# etc...
|
|
|
|
|
|
|
|
# User and group to run the cmd.
|
|
|
|
# Can be name or uid/gid.
|
|
|
|
# Affect only command handled.
|
|
|
|
# Dockerfile USER value by default.
|
|
|
|
user: 1000
|
|
|
|
group: 1000
|
|
|
|
|
|
|
|
# These files should exist (ADD or COPY)
|
|
|
|
# and should be jinja templated.
|
|
|
|
config_files:
|
|
|
|
- /etc/gitconfig
|
|
|
|
- .ssh/config
|
|
|
|
- .ssh/id_rsa
|
|
|
|
|
|
|
|
# These environment variables will be wiped before
|
|
|
|
# exec command to keep them secret
|
|
|
|
secret_env:
|
|
|
|
- SSHKEY
|
2016-09-22 23:14:54 +00:00
|
|
|
- '*' # Support globbing, all environment will be wiped
|
2015-12-04 13:59:07 +00:00
|
|
|
|
|
|
|
# Links are handled here
|
|
|
|
# Port, name, protocol or env variable can be used to identify the links
|
|
|
|
# Raise an error if the link could not be identified
|
|
|
|
links:
|
|
|
|
'ssh':
|
|
|
|
port: 22
|
|
|
|
name: 'ssh*'
|
|
|
|
protocol: tcp
|
2015-12-07 02:19:46 +00:00
|
|
|
# env can be list, dict or string
|
|
|
|
env:
|
|
|
|
FOO: bar
|
2015-12-15 07:56:17 +00:00
|
|
|
# Single doesn't allow multiple links for this id
|
|
|
|
# false by default
|
|
|
|
single: true
|
|
|
|
# Set to false to get optional link
|
|
|
|
# true by default
|
|
|
|
required: true
|
2015-12-04 13:59:07 +00:00
|
|
|
|
|
|
|
# Commands to run before applying configuration
|
|
|
|
pre_conf_commands:
|
|
|
|
- echo something useless
|
|
|
|
|
|
|
|
# commands to run after applying configuration
|
2015-12-15 07:56:17 +00:00
|
|
|
post_conf_commands:
|
2015-12-04 13:59:07 +00:00
|
|
|
- echo something even useless
|
|
|
|
|
2015-12-15 07:56:17 +00:00
|
|
|
# Cleanup environment from variables created by linked containers
|
|
|
|
# before running command (True by default)
|
|
|
|
clean_env: True
|
|
|
|
|
2015-12-04 13:59:07 +00:00
|
|
|
# Enable debug to debug
|
|
|
|
debug: true
|