blob: c0524e95d3ae6425ba376e8a8f06ae10d8937279 (
plain) (
blame)
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
|
---
- name: Load vars
hosts: localhost
tags: always
tasks:
- include_vars:
file: docker-vars.yml
- name: Create a front container to be provisioned later
tags: wiki
hosts: localhost
tasks:
- name: create docker container
docker_container:
name: emacsconf-front
image: python:3-buster
command: ["sleep", "infinity"]
volumes: "{{ ikiwiki_git_source }}:{{ ikiwiki_git_source_mount }}"
published_ports:
- "28080:80"
- "2222:22"
- name: Create a pad container to be provisioned later
tags: pad
hosts: localhost
tasks:
- name: create docker container
docker_container:
name: emacsconf-pad
image: python:3-buster
command: ["sleep", "1d"]
pull: yes
published_ports:
- "9001:9001"
- name: Load vars
hosts: all
tags: always
tasks:
- include_vars:
file: docker-vars.yml
- name: Run common tasks
import_playbook: common-playbook.yml
|