chore: update container image
All checks were successful
Deploy / Prepare Build (push) Successful in 24m50s

This commit is contained in:
2025-10-15 20:05:45 +10:00
parent 50d0386d1f
commit 6208f61652
21 changed files with 94 additions and 266 deletions

View File

@@ -7,19 +7,10 @@
- "/data/pykms"
- "/data/pykms/db"
- name: Pull docker image
community.docker.docker_image:
name: ghcr.io/py-kms-organization/py-kms
tag: latest
source: pull
force_source: true
force_tag: true
register: docker_image
- name: Create the pykms container
docker_container:
name: pykms
image: "{{ docker_image.image.RepoTags[0] }}"
image: ghcr.io/py-kms-organization/py-kms:latest@sha256:07e5295d563df9e8f5165109d79cf06e425559c8b7f465c3c22578f62f8dce59
restart_policy: unless-stopped
ports:
- "1688:1688"
@@ -31,6 +22,7 @@
volumes:
- "/data/pykms/db:/home/py-kms/db"
- /etc/localtime:/etc/localtime:ro
when: docker_image.changed
register: container_pykms
pull: true
recreate: true