forked from data.coop/ansible
reynir
51c8acc119
I don't find any official docker images, so I set up a fork of the repo and build it with drone: https://git.data.coop/data.coop/pinafore Co-authored-by: Reynir Björnsson <reynir@reynir.dk> Reviewed-on: data.coop/ansible#135 Co-authored-by: reynir <data.coop@reynir.dk> Co-committed-by: reynir <data.coop@reynir.dk>
15 lines
476 B
YAML
15 lines
476 B
YAML
- 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"
|