add pull yes to images

This commit is contained in:
weeman 2021-08-14 13:06:15 +02:00
parent 10d0d54596
commit a6b4bd127b
Signed by: weeman
GPG Key ID: 34F0524D4DA694A1
1 changed files with 3 additions and 0 deletions

View File

@ -36,6 +36,7 @@
community.general.docker_container:
name: ki_db
image: "{{ ki_db_image }}"
pull: no
restart_policy: unless-stopped
env:
MYSQL_ROOT_PASSWORD: "{{ ki_db_root_password }}"
@ -51,6 +52,7 @@
community.general.docker_container:
name: ki_backend
image: "{{ ki_backend_image }}"
pull: yes
restart_policy: unless-stopped
env:
SQLALCHEMY_DATABASE_URI: "mariadb+pymysql://ki:{{ ki_db_password }}@ki_db:3306/ki"
@ -69,6 +71,7 @@
community.general.docker_container:
name: ki_frontend
image: "{{ ki_frontend_image }}"
pull: yes
restart_policy: unless-stopped
ports:
- "{{ ki_frontend_port }}:80"