forked from uumas/ansible-docker
Implement ssh config of gitea role
This commit is contained in:
@@ -2,3 +2,5 @@
|
||||
|
||||
reverse_proxy_type: caddy
|
||||
docker_database: none
|
||||
docker_additional_env: {}
|
||||
docker_published_ports: []
|
||||
|
||||
@@ -36,9 +36,9 @@
|
||||
pull: true
|
||||
container_default_behavior: no_defaults
|
||||
volumes: "{{ docker_volumes | default(omit) }}"
|
||||
published_ports: "{{ container_published_ports | default(omit) }}"
|
||||
published_ports: "{{ container_published_ports + docker_published_ports | default(omit) }}"
|
||||
labels: "{{ traefik_labels | default(omit) }}"
|
||||
env: "{{ docker_env }}"
|
||||
env: "{{ docker_env | combine(docker_additional_env) }}"
|
||||
entrypoint: "{{ docker_entrypoint | default(omit) }}"
|
||||
restart_policy: always
|
||||
networks:
|
||||
|
||||
Reference in New Issue
Block a user