homelab/roles/gitea/defaults/main.yml

19 lines
473 B
YAML
Raw Normal View History

2020-07-28 03:20:50 +00:00
# container settings
gitea_name: gitea
2022-05-27 06:28:51 +00:00
gitea_sshport: "222"
gitea_webport: "3000"
gitea_ssh: "127.0.0.1:{{ gitea_sshport }}"
gitea_web: "127.0.0.1:{{ gitea_webport }}"
gitea_volume: "{{ gitea_name }}"
gitea_rooturl: "http://{{ gitea_domain }}"
gitea_signup: true
2020-07-28 03:20:50 +00:00
# database settings
gitea_dbtype: postgres
gitea_dbhost: host.docker.internal
gitea_dbname: "{{ gitea_name }}"
gitea_dbuser: "{{ gitea_name }}"
2020-07-28 03:20:50 +00:00
# host
2022-05-28 03:14:06 +00:00
gitea_root: "{{ docker_compose_root }}/{{ gitea_name }}"