Who could coach me into Dockerizing app for Cloudron ?
-
@JOduMonT said in Who could coach me into Dockerizing app for Cloudron ?:
docker build jodumont/statping:$NOW
This one would need to be
docker build . -t jodumont/statping:$NOW
else this command already fails. I am also missing a push to your registry. Looking at https://hub.docker.com/r/jodumont/statping/tags these still seem to be the Docker images provided by statping directly.I would recommend to use the Makefile that is part of the repository. That way its a simple
make build install
(and from there onemake update
to build and update directly). -
@fbartels said in Who could coach me into Dockerizing app for Cloudron ?:
docker build . -t jodumont/statping:$NOW
yeah sorry, the dot is missing in my cut and past but this is not the issue
but don't worry it's fine I prefer piggybagging you
-
@JOduMonT ok. fine by me.
Just that you are aware. The actual repo is https://hub.docker.com/repository/docker/fbartels/com.github.statping (I changed the name when adding the Makefile).
If you would want to debug the app not starting, then the output of
cloudron logs -f
(ormake logs
would be helpful. -
@JOduMonT I already answered you via chat message, but for the sake of somebody else stumbling over this.
The app generates a random password at first startup. The password can be read out from
/app/data/.env
. From your local system you could simply runcloudron exec grep ADMIN_PASSWORD= .env
.I have just now also added a simple readme with this information.
-
For those that would be interested as well. I have just created a live stream on Youtube for tomorrow 14:00 (CET). During that stream I want to show a bit how to make a Cloudron app and will use Matterbridge as the example for it.
I would timebox the whole stream to a max of two hours, lets see how far I'll get in that time, maybe I won't even need that much time.
There will be an unedited recording of the stream later on.
You can follow the stream at
-
I am fairly new to packaging for Cloudron but I have a few packages under my belt. Once I get some time in my personal life I was going to write a series of blogs posts to help others out from my own experiences.