2020-12-24 14:27:31 +01:00
|
|
|
- name: recieve {{domain}} certificate
|
|
|
|
command: certbot certonly --agree-tos --email {{administrator_email}} --non-interactive --webroot -w /var/lib/letsencrypt/ -d {{domain}}
|
|
|
|
|
|
|
|
- name: configure {{domain}}.conf
|
2023-09-02 13:13:28 +02:00
|
|
|
template: src=roles/docker-reverse-proxy/templates/domain.conf.j2 dest=/etc/nginx/conf.d/{{domain}}.conf
|
2020-12-24 14:27:31 +01:00
|
|
|
notify: restart nginx
|
|
|
|
|
|
|
|
- name: "docker jenkins"
|
|
|
|
docker_compose:
|
|
|
|
project_name: jenkins
|
|
|
|
definition:
|
|
|
|
application:
|
|
|
|
image: jenkins/jenkins:lts
|
|
|
|
restart: always
|
|
|
|
ports:
|
2020-12-27 23:12:09 +01:00
|
|
|
- "127.0.0.1:{{http_port}}:8080"
|
2020-12-24 14:27:31 +01:00
|
|
|
restart: always
|
|
|
|
volumes:
|
|
|
|
- jenkins_data:/var/jenkins_home
|
2020-12-31 15:50:05 +01:00
|
|
|
log_driver: journald
|