2022-12-29 21:13:31 +00:00
|
|
|
# vim: ft=yaml.ansible
|
|
|
|
---
|
2022-12-05 15:37:18 +00:00
|
|
|
- name: Set up Pinafore
|
|
|
|
docker_container:
|
|
|
|
name: pinafore
|
|
|
|
image: "docker.data.coop/pinafore:{{ services.pinafore.version }}"
|
|
|
|
restart_policy: unless-stopped
|
|
|
|
networks:
|
|
|
|
- name: external_services
|
|
|
|
env:
|
|
|
|
VIRTUAL_HOST: "{{ services.pinafore.domain }}"
|
|
|
|
VIRTUAL_PORT: "4002"
|
|
|
|
LETSENCRYPT_HOST: "{{ services.pinafore.domain }}"
|
|
|
|
LETSENCRYPT_EMAIL: "{{ letsencrypt_email }}"
|
|
|
|
labels:
|
|
|
|
com.centurylinklabs.watchtower.enable: "true"
|