homelab/roles/gitea/defaults/main.yml

15 lines
317 B
YAML
Raw Normal View History

2020-07-28 03:20:50 +00:00
# container settings
gitea_name: gitea
2022-05-25 01:15:10 +00:00
gitea_sshport: "222"
gitea_webport: "3000"
gitea_volume: "{{ gitea_name }}"
2020-07-28 03:20:50 +00:00
# database settings
2022-05-25 01:15:10 +00:00
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-25 01:15:10 +00:00
gitea_root: "{{ docker_root }}/{{ gitea_name }}"