I know you created this awhile ago and would be a bit off scope, but really like how your project is put together.
I was looking for a way to automatically add traefik labels with a supplied domain. There are many other ways to automatically add the service to cloudflare or whatever provider by pulling from the notes. But would be cool to have everything automated and structured nice. Users could add the traefik options they want. Just have to change the myapp to whatever the container is called with your script and place it in.
traefik.enable=true
traefik.http.routers.myapp.rule=Host(myapp.example.com)
traefik.http.routers.myapp.entrypoints=websecure
traefik.http.routers.myapp.middlewares=auth@file,compression
traefik.http.routers.myapp.tls=true
traefik.http.routers.myapp.tls.certresolver=myresolver
traefik.http.services.myapp.loadbalancer.server.port=8080
And I wanted to bump this project! There are a few similar that you could take ideas from to improve.
I know you created this awhile ago and would be a bit off scope, but really like how your project is put together.
I was looking for a way to automatically add traefik labels with a supplied domain. There are many other ways to automatically add the service to cloudflare or whatever provider by pulling from the notes. But would be cool to have everything automated and structured nice. Users could add the traefik options they want. Just have to change the myapp to whatever the container is called with your script and place it in.
traefik.enable=true
traefik.http.routers.myapp.rule=Host(
myapp.example.com)traefik.http.routers.myapp.entrypoints=websecure
traefik.http.routers.myapp.middlewares=auth@file,compression
traefik.http.routers.myapp.tls=true
traefik.http.routers.myapp.tls.certresolver=myresolver
traefik.http.services.myapp.loadbalancer.server.port=8080
And I wanted to bump this project! There are a few similar that you could take ideas from to improve.