Module to import docker-compose via saltstack
2016.3.0 新版功能.
maintainer: | Jean Praloran <jeanpralo@gmail.com> |
---|---|
maturity: | new |
depends: | docker-compose>=1.5 |
platform: | all |
This module allows to deal with docker-compose file in a directory.
This is a first version only, the following commands are missing at the moment but will be built later on if the community is interested in this module:
- run
- logs
- port
- scale
This execution module requires at least version 1.4.0 of both docker-compose and
Docker. docker-compose can easily be installed using pip.install
:
salt myminion pip.install docker-compose>=1.5.0
In order to use the module if you have no docker-compose file on the server you can issue the command create, it takes two arguments the path where the docker-compose.yml will be stored and the content of this latter:
Then you can execute a list of method defined at the bottom with at least one argument (the path where the docker-compose.yml will be read) and an optional python list which corresponds to the services names:
- up
- restart
- stop
- start
- pause
- unpause
- kill
- rm
- ps
- pull
- build
salt.modules.dockercompose.
build
(path, service_names=None)¶Build image for containers in the docker-compose file, service_names is a python list, if omitted build images for all containers. Please note that at the moment the module does not allow you to upload your Dockerfile, nor any other file you could need with your docker-compose.yml, you will have to make sure the files you need are actually in the directory sepcified in the build keyword
CLI Example:
salt myminion dockercompose.build /path/where/docker-compose/stored
salt myminion dockercompose.build /path/where/docker-compose/stored '[janus]'
salt.modules.dockercompose.
create
(path, docker_compose)¶Create and validate a docker-compose file into a directory
CLI Example:
salt myminion dockercompose.create /path/where/docker-compose/stored content
salt.modules.dockercompose.
get
(path)¶Get the content of the docker-compose file into a directory
CLI Example:
salt myminion dockercompose.get /path/where/docker-compose/stored
salt.modules.dockercompose.
kill
(path, service_names=None)¶Kill containers in the docker-compose file, service_names is a python list, if omitted kill all containers
CLI Example:
salt myminion dockercompose.kill /path/where/docker-compose/stored
salt myminion dockercompose.kill /path/where/docker-compose/stored '[janus]'
salt.modules.dockercompose.
pause
(path, service_names=None)¶Pause running containers in the docker-compose file, service_names is a python list, if omitted pause all containers
CLI Example:
salt myminion dockercompose.pause /path/where/docker-compose/stored
salt myminion dockercompose.pause /path/where/docker-compose/stored '[janus]'
salt.modules.dockercompose.
ps
(path)¶List all running containers and report some information about them
CLI Example:
salt myminion dockercompose.ps /path/where/docker-compose/stored
salt.modules.dockercompose.
pull
(path, service_names=None)¶Pull image for containers in the docker-compose file, service_names is a python list, if omitted pull all images
CLI Example:
salt myminion dockercompose.pull /path/where/docker-compose/stored
salt myminion dockercompose.pull /path/where/docker-compose/stored '[janus]'
salt.modules.dockercompose.
restart
(path, service_names=None)¶Restart container(s) in the docker-compose file, service_names is a python list, if omitted restart all containers
CLI Example:
salt myminion dockercompose.restart /path/where/docker-compose/stored
salt myminion dockercompose.restart /path/where/docker-compose/stored '[janus]'
salt.modules.dockercompose.
rm
(path, service_names=None)¶Remove stopped containers in the docker-compose file, service_names is a python list, if omitted remove all stopped containers
CLI Example:
salt myminion dockercompose.rm /path/where/docker-compose/stored
salt myminion dockercompose.rm /path/where/docker-compose/stored '[janus]'
salt.modules.dockercompose.
start
(path, service_names=None)¶Start containers in the docker-compose file, service_names is a python list, if omitted start all containers
CLI Example:
salt myminion dockercompose.start /path/where/docker-compose/stored
salt myminion dockercompose.start /path/where/docker-compose/stored '[janus]'
salt.modules.dockercompose.
stop
(path, service_names=None)¶Stop running containers in the docker-compose file, service_names is a python list, if omitted stop all containers
CLI Example:
salt myminion dockercompose.stop /path/where/docker-compose/stored
salt myminion dockercompose.stop /path/where/docker-compose/stored '[janus]'
salt.modules.dockercompose.
unpause
(path, service_names=None)¶Un-Pause containers in the docker-compose file, service_names is a python list, if omitted unpause all containers
CLI Example:
salt myminion dockercompose.pause /path/where/docker-compose/stored
salt myminion dockercompose.pause /path/where/docker-compose/stored '[janus]'
salt.modules.dockercompose.
up
(path, service_names=None)¶Create and start containers defined in the the docker-compose.yml file located in path, service_names is a python list, if omitted create and start all containers
CLI Example:
salt myminion dockercompose.up /path/where/docker-compose/stored
salt myminion dockercompose.up /path/where/docker-compose/stored '[janus]'