mirror of
https://github.com/cmehay/pyentrypoint
synced 2024-10-30 15:21:11 +00:00
commit
72e44abe8c
10
README.md
10
README.md
@ -111,6 +111,7 @@ secret_env:
|
|||||||
# Links are handled here
|
# Links are handled here
|
||||||
# Port, name, protocol or env variable can be used to identify the links
|
# Port, name, protocol or env variable can be used to identify the links
|
||||||
# Raise an error if the link could not be identified
|
# Raise an error if the link could not be identified
|
||||||
|
# This is not supported when using docker network or docker-compose v2.
|
||||||
links:
|
links:
|
||||||
'ssh':
|
'ssh':
|
||||||
port: 22
|
port: 22
|
||||||
@ -159,7 +160,9 @@ quiet: false
|
|||||||
|
|
||||||
### Config templates
|
### Config templates
|
||||||
|
|
||||||
You can generate configuration for your service with jinga2 template.
|
You can generate configuration for your service with jinja2 template.
|
||||||
|
|
||||||
|
**`links` and `containers` are not supported with docker network and docker-compose v2.**
|
||||||
|
|
||||||
Here is an example for an hypothetical ssh config file:
|
Here is an example for an hypothetical ssh config file:
|
||||||
|
|
||||||
@ -216,6 +219,8 @@ You have 4 available objects in your templates.
|
|||||||
|
|
||||||
#### links
|
#### links
|
||||||
|
|
||||||
|
**Not supported with docker network and docker-compose v2**
|
||||||
|
|
||||||
`Links` handles `Link` objects. You can identify links using wildcard patterns in the configuration file.
|
`Links` handles `Link` objects. You can identify links using wildcard patterns in the configuration file.
|
||||||
|
|
||||||
`link` is related to one physical link (one ip and one port).
|
`link` is related to one physical link (one ip and one port).
|
||||||
@ -235,6 +240,9 @@ You have 4 available objects in your templates.
|
|||||||
- tuple of related container names
|
- tuple of related container names
|
||||||
|
|
||||||
#### containers
|
#### containers
|
||||||
|
|
||||||
|
**Not supported with docker network and docker-compose v2**
|
||||||
|
|
||||||
`containers` handles a tuple of `container` object.
|
`containers` handles a tuple of `container` object.
|
||||||
|
|
||||||
`container` handles the following attributes:
|
`container` handles the following attributes:
|
||||||
|
@ -46,6 +46,7 @@ This is an example of ``entrypoint-config.yml`` file.
|
|||||||
# Links are handled here
|
# Links are handled here
|
||||||
# Port, name, protocol or env variable can be used to identify the links
|
# Port, name, protocol or env variable can be used to identify the links
|
||||||
# Raise an error if the link could not be identified
|
# Raise an error if the link could not be identified
|
||||||
|
# This not supported when using docker network or docker-compose v2.
|
||||||
links:
|
links:
|
||||||
'ssh':
|
'ssh':
|
||||||
port: 22
|
port: 22
|
||||||
@ -175,6 +176,8 @@ running command to keep them secret.
|
|||||||
links
|
links
|
||||||
^^^^^
|
^^^^^
|
||||||
|
|
||||||
|
**Not supported when using docker network or docker-compose v2.**
|
||||||
|
|
||||||
Links are handled here.
|
Links are handled here.
|
||||||
|
|
||||||
Port, name, protocol or environment variables can be used to identify the links.
|
Port, name, protocol or environment variables can be used to identify the links.
|
||||||
|
@ -64,6 +64,8 @@ object.
|
|||||||
links
|
links
|
||||||
^^^^^
|
^^^^^
|
||||||
|
|
||||||
|
**Not supported when using docker network or docker-compose v2.**
|
||||||
|
|
||||||
``Links`` handles ``Link`` objects. You can identify links using
|
``Links`` handles ``Link`` objects. You can identify links using
|
||||||
wildcard patterns in the configuration file.
|
wildcard patterns in the configuration file.
|
||||||
|
|
||||||
@ -78,6 +80,8 @@ container names
|
|||||||
containers
|
containers
|
||||||
^^^^^^^^^^
|
^^^^^^^^^^
|
||||||
|
|
||||||
|
**Not supported when using docker network or docker-compose v2.**
|
||||||
|
|
||||||
``containers`` handles a tuple of ``container`` object.
|
``containers`` handles a tuple of ``container`` object.
|
||||||
|
|
||||||
``container`` handles the following attributes: - ``ip`` - container ip
|
``container`` handles the following attributes: - ``ip`` - container ip
|
||||||
|
Loading…
Reference in New Issue
Block a user