mooomooo
mooomooo
As a proof of concept, I wrangled the ansible playbook into generating a docker-compose.yml instead, and it seems to work just fine. (The process of wrangling, however, is not fine...
I have one main request that would make this process a lot less hackish, that I can't really figure out on my own easily. Can we have separate tags for...
Incidentally, with #418 this gets a lot cleaner, with two helper python scripts: [addsafetodo.py.gz](https://github.com/spantaleev/matrix-docker-ansible-deploy/files/4377454/addsafetodo.py.gz) : adds tag `safetodo` to the tasks we want to run. [composify.py.gz](https://github.com/spantaleev/matrix-docker-ansible-deploy/files/4377455/composify.py.gz) : converts a directory...
Hm I missed this earlier, sorry; I should be able to test this out later this week. For reference, I'll be using this as a plugin to bitlbee, compiling then...
Hm. Not having any experience with cmake, I'm not sure if I'm doing the right thing. I'm getting warnings that are treated as errors and thus not allowing me to...
Hm ok having made that change, it compiles and I now have a `/usr/lib/purple-2/libpurple-signal.so` alongside my `/usr/lib/purple-2/libsignald.so`. But the plugin isn't showing up in my list of supported protocols? There's...
I think this is more than just a documentation thing? On a clean git clone; running docker(-compose) build gives: ``` Step 11/16 : RUN go generate ./... && CGO_ENABLED=0 go...
I don't have any locally installed go -- I'm doing it all within docker: ``` % git clone https://github.com/ddvk/rmfakecloud.git % vim docker-compose.yml % docker-compose up --build ``` This is my...
Since you mentioned the version of go, I played around with the Dockerfile -- changing the version used in there fixes the problem: https://github.com/ddvk/rmfakecloud/blob/a68e1d9db61b8f2f826d70a1ebf1b2c35f968736/Dockerfile#L7 Replacing with: ``` FROM golang:1.17-alpine as...
The named network is not strictly necessary -- this service just needs to be on the same network as your reverse proxy. The latest instructions at https://github.com/nginx-proxy/acme-companion don't ask for...