Skip to content

Commit 7693a24

Browse files
committed
Fix the default scenario for local testing.
1 parent f9bf430 commit 7693a24

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

molecule/default/Dockerfile.j2

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
# Molecule managed
22

3+
{% if item.registry is defined %}
4+
FROM {{ item.registry.url }}/{{ item.image }}
5+
{% else %}
36
FROM {{ item.image }}
7+
{% endif %}

molecule/default/molecule.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,10 @@ lint:
1010
platforms:
1111
- name: bootstrap-alpine-edge
1212
image: alpine:edge
13+
command: sh -c "while true; do sleep 10000; done"
1314
- name: bootstrap-alpine-latest
1415
image: alpine:latest
16+
command: sh -c "while true; do sleep 10000; done"
1517
- name: bootstrap-archlinux
1618
image: base/archlinux
1719
- name: bootstrap-centos-6
@@ -38,8 +40,6 @@ platforms:
3840
image: ubuntu:artful
3941
- name: bootstrap-ubuntu-devel
4042
image: ubuntu:devel
41-
- name: bootstrap-alpine-latest
42-
image: alpine:latest
4343
provisioner:
4444
name: ansible
4545
lint:

0 commit comments

Comments
 (0)