Michael Bisbjerg

Results 320 comments of Michael Bisbjerg

Sure. (I have projects like that too).. :) As I understand this, it's a series of extension methods that emit bootstrap-py HTML, right? So in a sense, most of the...

Note: I was able to hack the `pixl-server-web` to listen to a specific host. This is not a good solution, so I'm looking forward to being able to specify this...

Ah, but systemd replaces SysInitV. I went ahead and created a systemd service file. ``` [Install] WantedBy=multi-user.target [Service] Type=forking PIDFile=/opt/cronicle/logs/cronicled.pid ExecStart=/opt/cronicle/bin/control.sh start ExecStop=/opt/cronicle/bin/control.sh stop ``` Example status output from systemd:...

https://www.tecmint.com/systemd-replaces-init-in-linux/ https://askubuntu.com/questions/911525/difference-between-systemctl-init-d-and-service

Also. The docs on systemd services are limited, yet, but here are the two resources I usually pick when looking up stuff: * https://wiki.archlinux.org/index.php/systemd * https://www.freedesktop.org/software/systemd/man/systemd.service.html

I'm working on this too. * I have crontab-ui saving to my host `/etc/cron.d` * I've observed the supervisor in the docker image is running its own `crond` * My...

Updates: Curiously. Editing my "root" crontab file seems to work.. cron picked it up. I mounted `/var/spool/cron/crontabs/` in my container, wrote the crontab with crontab-ui and then stopped the container...

Does docker desktop support docker-compose 3.x versions? I run 2.x for all my stuff, as that was the recommended version for non-clustered setups. 3.x brings a lot of deploy/cluster logic....