In my experience, I found that rclone mount
a crypt
remote is not as stable as a direct mount. But I will try to do it again. Thank you very much !
lyoko
I found something for AWS here but not sure about the rest https://www.reddit.com/r/aws/comments/hxfjwl/does_aws_ever_scan_s3_buckets_for_known_copywrite/
I usually try different custom ROMs and have to format my phone frequently. Will that eSIM survive that format or not ?
How do you keep your Spotify recommendations update ? Don't you have to listen to songs on it to get updated recommendations ?
That sounds like what I need. Thank you very much !
I dont think Ansible is a general templating engine ? I do templating for all most everything and not only docker compose, for example this for traefik configuration.
so you are also generating the docker-compose from code. I think I am looking for something that aware of both templating and docker-compose deployment because right now, at the end of the day, I am still have to run docker-compose up -f ...
while helm
can do both templating and deployment.
I actually need more than merging. For example, right now my traefik.template
will look like this:
[http.routers.{{ router_name }}]
rule = "{{ router_rule }}"
service = "{{ service_name }}"
middlewares = [{{ middlewares | map("tojson") | join(", ") }}]
{% block router %}{% endblock %}
[http.routers.{{ router_name }}.tls]
certResolver = "leresolver_http"
{% if service_host is defined %}
[[http.services.{{ service_name }}.loadBalancer.servers]]
url = "{{ 'https' if service_use_https is defined else 'http' }}://{{ service_host }}{{ ':' ~ service_port if service_port is defined else '' }}"
{% endif %}
and then one of my traefik.toml
could look like this
{% extends "template/traefik.jinja" %}
{% set router_name = "dozzle" %}
{% set router_rule = "Host(`dozzle.example.com`)" %}
{% set service_name = "dozzle" %}
{% set service_host = "dozzle" %}
{% set service_port = 8080 %}
you mean nix the package manager ?
I know about Helm but I don't need k8s
features and my VPS is just too weak for k8s
I think :/
Yes you can. I add a window 11 iso to it as well
I have the same problem with navidrome so I've written a new Opensubsonic server in Rust with a permision model. You can check it out here: https://github.com/vnghia/nghe