| 1234567891011121314151617181920212223242526 |
- ---
- name: "Whoami"
- description: "Simple HTTP service that returns information about the request"
- version: "0.0.1"
- date: "2023-10-01"
- author: "Christian Lempa"
- tags:
- - "traefik"
- - "whoami"
- - "http"
- - "testing"
- ---
- services:
- {{ service_name | default('whoami') }}:
- image: traefik/whoami
- container_name: {{ container_name | default('whoami') }}
- {% if swarm %}
- deploy:
- replicas: {{ swarm_replicas | default(1) }}
- restart_policy:
- condition: on-failure
- {% endif %}
- ports:
- - "{{ service_port['http'] | default(8080) }}:80"
- - "{{ service_port['https'] | default(8443) }}:443"
- restart: unless-stopped
|