Info |
---|
WIP: This will be improved upon to be platform-aware but the devops jobs will be automatically updated when that happens |
Table of Contents |
---|
Installation
...
- Check out $TIS-DEVOPS
- Create a new directory under docker/stacks/:stack_name
Add a docker-compose.yml in that new directory. If your application needs environment variables then use an
env_fileenvironment section, i.e.
env_file:
- ./:stack_name.envCode Block environment: DATABASE_HOST: "{{ database['host'] }}"
Create new playbook under ansible/ directory that matches your service name
- Add the hosts to the Ansible inventory file for platforms you are targettingtargeting.
Create a Jinja template under ansible/roles/docker_compose/templates/:stack_name.env.j2
Commit and push your changes to Github.
- Create a deploy job in Jenkins by copying the 'revalidation-dev-deploy' job and changing the export STACK=revalidation to match your stack name.
Cleaning up Docker Hosts
There are two steps required to clean up a host;
Stop all running containers;
Code Block $ docker stop $(docker ps -q)
Remove all docker-compose files for the existing stacks;
Code Block $ sudo rm -rf /data/docker/stacks