Compare commits

...

4 Commits

Author SHA1 Message Date
9a3b521f42 Prepare 0.4.4
All checks were successful
continuous-integration/drone/tag Build is passing
2024-02-09 00:40:13 +01:00
98d060056f Fix network type 2024-02-09 00:35:51 +01:00
4b446e51f0 Prepare 0.4.3
All checks were successful
continuous-integration/drone/tag Build is passing
2024-01-23 14:13:33 +01:00
b1e3c3be53 Fix network and mounts options 2024-01-23 14:12:41 +01:00
3 changed files with 3 additions and 4 deletions

View File

@ -1,7 +1,7 @@
---
namespace: happydns
name: happydomain
version: 0.4.2
version: 0.4.4
readme: README.md
authors:
- happyDomain Team <happydomain.org>

View File

@ -7,11 +7,10 @@ happydomain_version: "latest"
happydomain_data_dir: "" # defaults to /var/lib/happydomain.{{ instance_name }} if not filled
happydomain_inner_data_dir: "/data"
happydomain_docker_network: "default"
happydomain_docker_mounts:
- source: "{% if happydomain_data_dir != '' %}{{ happydomain_data_dir }}{% else %}/var/lib/{% if instance_name != 'happyDomain' %}happydomain.{% endif %}{{ instance_name }}{% endif %}"
target: "{{ happydomain_inner_data_dir }}"
type: "bind"
happydomain_admin_bind: "./happydomain.sock"
happydomain_baseurl: ""
happydomain_custom_body_html: ""

View File

@ -11,7 +11,7 @@
memory_swap: 512M
mounts: "{{ happydomain_docker_mounts }}"
tmpfs: "{{ happydomain_docker_tmpfs | default([]) }}"
networks: "{{ happydomain_docker_network | default({}) }}"
networks: "{{ happydomain_docker_network | default([]) }}"
env:
HAPPYDOMAIN_ADMIN_BIND: "{{ happydomain_admin_bind }}"
HAPPYDOMAIN_BIND: "0.0.0.0:8081"