add pull yes to images
This commit is contained in:
parent
10d0d54596
commit
a6b4bd127b
@ -36,6 +36,7 @@
|
|||||||
community.general.docker_container:
|
community.general.docker_container:
|
||||||
name: ki_db
|
name: ki_db
|
||||||
image: "{{ ki_db_image }}"
|
image: "{{ ki_db_image }}"
|
||||||
|
pull: no
|
||||||
restart_policy: unless-stopped
|
restart_policy: unless-stopped
|
||||||
env:
|
env:
|
||||||
MYSQL_ROOT_PASSWORD: "{{ ki_db_root_password }}"
|
MYSQL_ROOT_PASSWORD: "{{ ki_db_root_password }}"
|
||||||
@ -51,6 +52,7 @@
|
|||||||
community.general.docker_container:
|
community.general.docker_container:
|
||||||
name: ki_backend
|
name: ki_backend
|
||||||
image: "{{ ki_backend_image }}"
|
image: "{{ ki_backend_image }}"
|
||||||
|
pull: yes
|
||||||
restart_policy: unless-stopped
|
restart_policy: unless-stopped
|
||||||
env:
|
env:
|
||||||
SQLALCHEMY_DATABASE_URI: "mariadb+pymysql://ki:{{ ki_db_password }}@ki_db:3306/ki"
|
SQLALCHEMY_DATABASE_URI: "mariadb+pymysql://ki:{{ ki_db_password }}@ki_db:3306/ki"
|
||||||
@ -69,6 +71,7 @@
|
|||||||
community.general.docker_container:
|
community.general.docker_container:
|
||||||
name: ki_frontend
|
name: ki_frontend
|
||||||
image: "{{ ki_frontend_image }}"
|
image: "{{ ki_frontend_image }}"
|
||||||
|
pull: yes
|
||||||
restart_policy: unless-stopped
|
restart_policy: unless-stopped
|
||||||
ports:
|
ports:
|
||||||
- "{{ ki_frontend_port }}:80"
|
- "{{ ki_frontend_port }}:80"
|
||||||
|
Loading…
Reference in New Issue
Block a user