Justin Cichra

Results 49 comments of Justin Cichra

Looks like this project runs CI against Go 1.10. I tried porting it to Go modules / Go 1.15 but ran into several issues once I got it moved /...

@soniyj If this is still relevant to you, go ahead and try my fork: `go get github.com/jrcichra/thunder@c82d2fa57e8a14f2e6d7ff76b4ad583d5058134d` I changed around the syntax in the problem area until I could get...

Hey @droslean , I forked this repo and built a version with Go 1.18 + the latest kubectl version, tracking alpine edge: https://github.com/jrcichra/kube-applier https://github.com/jrcichra/kube-applier/pkgs/container/kube-applier It's working in my K8S 1.23.6...

I would also be interested in helping with this. Interoperability of raspap and docker would be very beneficial for me.

Sure @billz that works for me. However, we could also investigate what breaks RaspAP when docker is installed on the same system and how we can fix it? The install...

I'm setting up a Pi4 fresh with RPi OS Lite. In the past, I installed docker with `sudo apt install docker.io`, which is `18.09.1+dfsg1-7.1+rpi1+rpt1`. I'll try installing from docker directly.

Did a fresh install of RPi OS Lite, did `sudo apt update && sudo apt upgrade`, then `curl -fsSL get.docker.com -o get-docker.sh && sh get-docker.sh` as shown on https://www.docker.com/blog/happy-pi-day-docker-raspberry-pi/ Then...

Yep, installing RaspAP, _then_ docker, it works in NAT or in bridged mode. That's fascinating!

Sounds great. I'd love to see what you've done.

The first challenge I'm seeing is `systemd`. I'm trying a very simple Dockerfile: ``` FROM balenalib/raspberrypi3:buster RUN install_packages wget curl systemd RUN curl -sL https://install.raspap.com | bash ``` To see...