Add docker_setup for network and phpmyadmin container
This commit is contained in:
parent
b9d772be0e
commit
7846c1b100
1 changed files with 24 additions and 0 deletions
24
tasks/docker_setup.yml
Normal file
24
tasks/docker_setup.yml
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
- name: Setup docker network
|
||||||
|
docker_network:
|
||||||
|
name: dockernet
|
||||||
|
driver: bridge
|
||||||
|
ipam_config:
|
||||||
|
- subnet: 192.168.0.0/24
|
||||||
|
gateway: 192.168.0.1
|
||||||
|
state: present
|
||||||
|
|
||||||
|
- name: Setup phpmyadmin
|
||||||
|
docker_container:
|
||||||
|
name: phpmyadmin
|
||||||
|
state: started
|
||||||
|
image: phpmyadmin:5.0
|
||||||
|
networks_cli_compatible: true
|
||||||
|
networks:
|
||||||
|
- name: dockernet
|
||||||
|
restart_policy: always
|
||||||
|
env:
|
||||||
|
PMA_HOST: 192.168.0.1
|
||||||
|
MYSQL_ROOT_PASSWORD: "{{ mysql_root_pw }}"
|
||||||
|
PMA_ABSOLUTE_URI: "https://mysql.adm.netz39.de"
|
||||||
|
published_ports:
|
||||||
|
- 9001:80
|
Loading…
Reference in a new issue