mirror of
https://github.com/pschiffe/docker-pdns.git
synced 2025-01-18 19:11:14 +01:00
Rename images in ansible playbook to match docker hub
This commit is contained in:
parent
c8f3785b1d
commit
46f61c4799
1 changed files with 15 additions and 14 deletions
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
- name: build pdns recursor
|
- name: build pdns recursor
|
||||||
docker_image:
|
docker_image:
|
||||||
name: my-pdns-recursor
|
name: pschiffe/pdns-recursor
|
||||||
state: '{{ i_state }}'
|
state: '{{ i_state }}'
|
||||||
source: build
|
source: build
|
||||||
force_source: true
|
force_source: true
|
||||||
|
@ -34,7 +34,7 @@
|
||||||
|
|
||||||
- name: build pdns recursor alpine version
|
- name: build pdns recursor alpine version
|
||||||
docker_image:
|
docker_image:
|
||||||
name: my-pdns-recursor
|
name: pschiffe/pdns-recursor
|
||||||
tag: alpine
|
tag: alpine
|
||||||
state: '{{ i_state }}'
|
state: '{{ i_state }}'
|
||||||
source: build
|
source: build
|
||||||
|
@ -49,7 +49,7 @@
|
||||||
- name: pdns recursor
|
- name: pdns recursor
|
||||||
docker_container:
|
docker_container:
|
||||||
name: pdns-recursor
|
name: pdns-recursor
|
||||||
image: my-pdns-recursor:{{ "alpine" if alpine | bool else "latest" }}
|
image: pschiffe/pdns-recursor:{{ "alpine" if alpine | bool else "latest" }}
|
||||||
state: '{{ c_state }}'
|
state: '{{ c_state }}'
|
||||||
networks_cli_compatible: true
|
networks_cli_compatible: true
|
||||||
networks:
|
networks:
|
||||||
|
@ -97,7 +97,7 @@
|
||||||
|
|
||||||
- name: build pdns
|
- name: build pdns
|
||||||
docker_image:
|
docker_image:
|
||||||
name: my-pdns
|
name: pschiffe/pdns-mysql
|
||||||
state: '{{ i_state }}'
|
state: '{{ i_state }}'
|
||||||
source: build
|
source: build
|
||||||
force_source: true
|
force_source: true
|
||||||
|
@ -109,7 +109,7 @@
|
||||||
|
|
||||||
- name: build pdns alpine version
|
- name: build pdns alpine version
|
||||||
docker_image:
|
docker_image:
|
||||||
name: my-pdns
|
name: pschiffe/pdns-mysql
|
||||||
tag: alpine
|
tag: alpine
|
||||||
state: '{{ i_state }}'
|
state: '{{ i_state }}'
|
||||||
source: build
|
source: build
|
||||||
|
@ -124,7 +124,7 @@
|
||||||
- name: pdns master
|
- name: pdns master
|
||||||
docker_container:
|
docker_container:
|
||||||
name: pdns
|
name: pdns
|
||||||
image: my-pdns:{{ "alpine" if alpine | bool else "latest" }}
|
image: pschiffe/pdns-mysql:{{ "alpine" if alpine | bool else "latest" }}
|
||||||
state: '{{ c_state }}'
|
state: '{{ c_state }}'
|
||||||
hostname: ns1.example.com
|
hostname: ns1.example.com
|
||||||
networks_cli_compatible: true
|
networks_cli_compatible: true
|
||||||
|
@ -157,7 +157,7 @@
|
||||||
- name: pdns slave
|
- name: pdns slave
|
||||||
docker_container:
|
docker_container:
|
||||||
name: pdns-slave
|
name: pdns-slave
|
||||||
image: my-pdns:{{ "alpine" if alpine | bool else "latest" }}
|
image: pschiffe/pdns-mysql:{{ "alpine" if alpine | bool else "latest" }}
|
||||||
state: '{{ c_state }}'
|
state: '{{ c_state }}'
|
||||||
hostname: ns2.example.com
|
hostname: ns2.example.com
|
||||||
networks_cli_compatible: true
|
networks_cli_compatible: true
|
||||||
|
@ -199,24 +199,26 @@
|
||||||
|
|
||||||
- name: build pdns-admin backend
|
- name: build pdns-admin backend
|
||||||
docker_image:
|
docker_image:
|
||||||
name: my-pdns-admin-uwsgi
|
name: pschiffe/pdns-admin-uwsgi
|
||||||
|
tag: ngoduykhanh
|
||||||
state: '{{ i_state }}'
|
state: '{{ i_state }}'
|
||||||
source: build
|
source: build
|
||||||
force_source: true
|
force_source: true
|
||||||
build:
|
build:
|
||||||
pull: true
|
pull: false
|
||||||
path: ./pdns-admin-uwsgi-ngoduykhanh
|
path: ./pdns-admin-uwsgi-ngoduykhanh
|
||||||
tags:
|
tags:
|
||||||
- pdns-admin
|
- pdns-admin
|
||||||
|
|
||||||
- name: build pdns-admin frontent
|
- name: build pdns-admin frontent
|
||||||
docker_image:
|
docker_image:
|
||||||
name: my-pdns-admin-static
|
name: pschiffe/pdns-admin-static
|
||||||
|
tag: ngoduykhanh
|
||||||
state: '{{ i_state }}'
|
state: '{{ i_state }}'
|
||||||
source: build
|
source: build
|
||||||
force_source: true
|
force_source: true
|
||||||
build:
|
build:
|
||||||
pull: true
|
pull: false
|
||||||
path: ./pdns-admin-static-ngoduykhanh
|
path: ./pdns-admin-static-ngoduykhanh
|
||||||
tags:
|
tags:
|
||||||
- pdns-admin
|
- pdns-admin
|
||||||
|
@ -224,7 +226,7 @@
|
||||||
- name: pdns-admin backend
|
- name: pdns-admin backend
|
||||||
docker_container:
|
docker_container:
|
||||||
name: pdns-admin-uwsgi
|
name: pdns-admin-uwsgi
|
||||||
image: my-pdns-admin-uwsgi
|
image: pschiffe/pdns-admin-uwsgi:ngoduykhanh
|
||||||
state: '{{ c_state }}'
|
state: '{{ c_state }}'
|
||||||
networks_cli_compatible: true
|
networks_cli_compatible: true
|
||||||
networks:
|
networks:
|
||||||
|
@ -233,7 +235,6 @@
|
||||||
- pdns-admin-uwsgi
|
- pdns-admin-uwsgi
|
||||||
volumes:
|
volumes:
|
||||||
- /etc/localtime:/etc/localtime:ro
|
- /etc/localtime:/etc/localtime:ro
|
||||||
- pdns-admin-upload:/opt/powerdns-admin/upload
|
|
||||||
env:
|
env:
|
||||||
PDNS_ADMIN_SQLA_DB_PASSWORD: "'my-secret-pw'"
|
PDNS_ADMIN_SQLA_DB_PASSWORD: "'my-secret-pw'"
|
||||||
PDNS_VERSION: "4.2"
|
PDNS_VERSION: "4.2"
|
||||||
|
@ -244,7 +245,7 @@
|
||||||
- name: pdns-admin frontend
|
- name: pdns-admin frontend
|
||||||
docker_container:
|
docker_container:
|
||||||
name: pdns-admin-static
|
name: pdns-admin-static
|
||||||
image: my-pdns-admin-static
|
image: pschiffe/pdns-admin-static:ngoduykhanh
|
||||||
state: '{{ c_state }}'
|
state: '{{ c_state }}'
|
||||||
networks_cli_compatible: true
|
networks_cli_compatible: true
|
||||||
networks:
|
networks:
|
||||||
|
|
Loading…
Reference in a new issue