You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pyentrypoint/docs/config.rst

222 lines
4.9 KiB
ReStructuredText

pyentrypoint-config.yml
=======================
This is an example of ``entrypoint-config.yml`` file.
.. code:: yaml
# 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.
# Note: if config files end with ".tpl", the extension will be removed.
config_files:
- /etc/gitconfig
- .ssh/config.tpl # Will apply to ".ssh/config"
- /tmp/id_rsa: .ssh/id_rsa # Will apply "/tmp/id_rsa" template to ".ssh/id_rsa"
# These environment variables will be wiped before
# exec command to keep them secret
# CAUTION: if the container is linked to another one,
# theses variables will passed to it anyway
secret_env:
- SSHKEY
# 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
# env can be list, dictionary or string
env:
FOO: bar
# 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
# Commands to run before applying configuration
pre_conf_commands:
- echo something > to_this_file
# commands to run after applying configuration
post_conf_commands:
- echo "something else" > to_this_another_file
# Cleanup environment from variables created by linked containers
# before running command (True by default)
clean_env: True
# Enable debug to debug
debug: true
yaml references
~~~~~~~~~~~~~~~
command
^^^^^^^
``command`` should reflect CMD in Dockerfile.
If the container is not started with this commande,
the configuration will not be applied.
subcommands
^^^^^^^^^^^
``subcommands`` is a list with some subcommands to handle.
Running container with a matching subcommand run it with setuped ``command``.
.. code:: yaml
subcommands:
- "-*"
- clone
- init
- ls-files
.. pull-quote::
**Note**: Globbing pattern is enabled here.
By default, all args started with hyphen are handled.
user, group
^^^^^^^^^^^
User and group to run the ``command``.
Can be name or uid/gid.
Affect only command handled.
.. code:: yaml
user: 1000
group: root
.. pull-quote::
**Note**: Dockerfile USER value by default.
config_files
^^^^^^^^^^^^
These files should exist (ADD or COPY) and should be jinja templated.
.. code:: yaml
config_files:
- /etc/gitconfig
- .ssh/config.tpl # Will apply to ".ssh/config"
- /tmp/id_rsa: .ssh/id_rsa # Will apply "/tmp/id_rsa" template to ".ssh/id_rsa"
.. pull-quote::
**Note**: if config files end with ".tpl", the extension will be removed.
secret_env
^^^^^^^^^^
These environment variables will be wiped before
running command to keep them secret.
.. code:: yaml
secret_env:
- SSHKEY
- APIKEY
.. pull-quote::
**CAUTION**: if the container is linked to another one,
theses variables will be sent to it anyway.
links
^^^^^
Links are handled here.
Port, name, protocol or environment variables can be used to identify the links.
.. code:: yaml
links:
'ssh': # This is the name to handle link in templates
port: 22
name: 'ssh*'
protocol: tcp
# env can be list, dictionary or string
env:
FOO: bar
# 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
.. pull-quote::
**Note**: All parameters are optionals.
Raise an error if the link could not be identified.
pre_conf_commands
^^^^^^^^^^^^^^^^^
List of shell commands to run before applying configuration
.. code:: yaml
pre_conf_commands:
- echo something > to_this_file
post_conf_commands
^^^^^^^^^^^^^^^^^^
List of shell commands to run after applying configuration
.. code:: yaml
post_conf_commands:
- echo "something else" > to_this_another_file
clean_env
^^^^^^^^^
Cleanup environment from variables created by linked containers
before running command (True by default)
debug
^^^^^
Print some debug.