The role starts a docker container from the specified image and parameters. The role support the definition of an external volume for data storage.
Docker needs to be available in the system. This requirement is managed via indigo-dc.docker dependency)
docker_run_appname
: name of the containerdocker_run_image
: image to be used. Default: ubuntudocker_run_tag
: tag for the image to be used. Default: latestdocker_run_env_variables
: list of environment variables (key/value pair) - see below. Default: []docker_run_ports
: list of ports to publish from the container to the host. Use the docker CLI syntax, e.g. [ "8080" ] or [ "8080:80" ]. Default: []docker_run_command
: command to be executed, can be left blankdocker_run_volume
: volume path on the container side, see more under the "External volume" section.
Environment variables are supported and passed as a list of key/value pairs. Varaible(s) are copied down into a file .env that is used to start the container.
env_file: /opt/{{ docker_run_appname }}/.env --> path to file containig a list of environment variables in the form FOO=BAR
Volume path on the container side is mounted by populating the variable docker_run_volume
.
Volume path on the host side is set by default to "/data". It can be changed by modifying the docker_run_host_volume
variable under defaults/
folder.
- indigo-dc.docker
- hosts: localhost
remote_user: root
roles:
- role: ansible-role-docker_run
docker_run_appname: nginx
docker_run_image: nginx
docker_run_tag: latest
docker_run_ports: [ "8080:80" ]
docker_run_command: ""
docker_run_volume: ""
BSD
Alessandro Costantini (INFN-CNAF), to continue the work of Diego Ciangottini (INFN-PG)