-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
main.yml
76 lines (63 loc) · 2.04 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
---
- hosts: localhost
connection: local
gather_facts: false
vars:
base_image: debian:buster
container_name: solr_build_container
image_namespace: geerlingguy
image_name: solr
pre_tasks:
- name: Extract the major version from solr_version
set_fact:
solr_major_version: "{{ solr_version.split('.')[0] }}"
- name: Make the latest version of the base image available locally.
docker_image:
name: '{{ base_image }}'
source: pull
force_source: true
- name: Create the Docker container.
docker_container:
image: '{{ base_image }}'
name: '{{ container_name }}'
command: sleep infinity
env_file: 'files/{{ solr_major_version }}.x.env'
- name: Add the newly created container to the inventory.
add_host:
hostname: '{{ container_name }}'
ansible_connection: docker
ansible_python_interpreter: /usr/bin/python3
- name: Ensure Python is installed.
raw: >
apt-get update &&
apt-get install -y --no-install-recommends python3
changed_when: true
delegate_to: '{{ container_name }}'
- name: Gather facts inside the container.
setup:
delegate_to: '{{ container_name }}'
roles:
- name: setup
delegate_to: '{{ container_name }}'
- name: geerlingguy.java
delegate_to: '{{ container_name }}'
- name: geerlingguy.solr
delegate_to: '{{ container_name }}'
post_tasks:
- name: Clean up the container.
shell: |
apt-get remove --purge -y python3
rm -rf /var/lib/apt/lists/*
changed_when: true
delegate_to: '{{ container_name }}'
- name: Commit the container.
command: >
docker commit
-c 'CMD {{ container_start_command }}'
-c 'WORKDIR {{ container_working_dir }}'
{{ container_name }} {{ image_namespace }}/{{ image_name }}:{{ solr_version }}
changed_when: true
- name: Remove the container.
docker_container:
name: '{{ container_name }}'
state: absent