-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.yml
57 lines (47 loc) · 1.38 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
---
- hosts: localhost
connection: local
gather_facts: no
vars:
base_image: rockylinux:9
container_name: fathom_build_container
image_namespace: geerlingguy
image_name: fathom
# Fathom settings.
fathom_manage_service: false
pre_tasks:
- name: Make the latest version of the base image available locally.
docker_image:
name: '{{ base_image }}'
source: pull
- name: Create the Docker container.
docker_container:
image: '{{ base_image }}'
name: '{{ container_name }}'
command: sleep infinity
- name: Add the newly created container to the inventory.
add_host:
hostname: '{{ container_name }}'
ansible_connection: docker
- name: Gather facts inside the container.
setup:
delegate_to: '{{ container_name }}'
roles:
- name: geerlingguy.fathom
delegate_to: '{{ container_name }}'
post_tasks:
- name: Install dependencies.
package:
name: unzip
state: present
delegate_to: '{{ container_name }}'
- name: Commit the container.
command: >
docker commit
-c 'CMD ["fathom", "server"]'
-c 'WORKDIR "/opt/fathom"'
{{ container_name }} {{ image_namespace }}/{{ image_name }}:latest
- name: Remove the container.
docker_container:
name: '{{ container_name }}'
state: absent