File tree Expand file tree Collapse file tree 3 files changed +46
-1
lines changed Expand file tree Collapse file tree 3 files changed +46
-1
lines changed Original file line number Diff line number Diff line change 90
90
- distribution : ubuntu
91
91
version : xenial
92
92
playbook : unit
93
+ - distribution : ubuntu
94
+ version : artful
95
+ playbook : basic
96
+ - distribution : ubuntu
97
+ version : artful
98
+ playbook : push
99
+ - distribution : ubuntu
100
+ version : artful
101
+ playbook : stable
102
+ - distribution : ubuntu
103
+ version : artful
104
+ playbook : template
105
+ - distribution : ubuntu
106
+ version : artful
107
+ playbook : unit
108
+ - distribution : ubuntu
109
+ version : bionic
110
+ playbook : basic
111
+ - distribution : ubuntu
112
+ version : bionic
113
+ playbook : push
114
+ - distribution : ubuntu
115
+ version : bionic
116
+ playbook : stable
117
+ - distribution : ubuntu
118
+ version : bionic
119
+ playbook : template
120
+ - distribution : ubuntu
121
+ version : bionic
122
+ playbook : unit
93
123
before_install :
94
124
- ' sudo docker pull ${distribution}:${version}'
95
125
- ' sudo docker build --no-cache --rm --file=tests/dockerfiles/Dockerfile.${distribution}-${version} --tag=${distribution}-${version}:ansible tests'
Original file line number Diff line number Diff line change @@ -28,7 +28,8 @@ nginx_repository:
28
28
# Default is mainline.
29
29
branch : mainline
30
30
31
- # Install NGINX Unit and NGINX Unit packages.
31
+ # Install NGINX Unit and NGINX Unit modules.
32
+ # Use a list of supported NGINX Unit modules.
32
33
# Default is false.
33
34
unit_enable : false
34
35
unit_modules : null
Original file line number Diff line number Diff line change
1
+ FROM ubuntu:artful
2
+
3
+ RUN apt-get update && apt-get dist-upgrade -y && apt-get install -y software-properties-common && rm -rf /var/lib/apt/lists/*
4
+
5
+ RUN apt-add-repository -y ppa:ansible/ansible && apt-get update && apt-get install -y \
6
+ git \
7
+ ansible \
8
+ apt-transport-https \
9
+ curl \
10
+ && rm -rf /var/lib/apt/lists/*
11
+
12
+ RUN echo "[local]\nlocalhost ansible_connection=local" > /etc/ansible/hosts
13
+
14
+ ENTRYPOINT ["/sbin/init"]
You can’t perform that action at this time.
0 commit comments