Our News Team @ 11 with host Snot Flickerman


Yes, I can hear you, Clem Fandango!

  • 11 Posts
  • 744 Comments
Joined 2 年前
cake
Cake day: 2023年10月24日

help-circle




  • The mass of men lead lives of quiet desperation. What is called resignation is confirmed desperation. From the desperate city you go into the desperate country, and have to console yourself with the bravery of minks and muskrats. A stereotyped but unconscious despair is concealed even under what are called the games and amusements of mankind. There is no play in them, for this comes after work. But it is a characteristic of wisdom not to do desperate things.

    -Henry David Thoreau

    We didn’t evolve for lives like this.




  • Immich is a more touchy beast because it includes a mobile app and the mobile app and the docker container need to generally be either the same version, or within a few versions of one another. There was a while where I forgot to update the server for a while and the mobile app kept being updated on my phone and stopped backing up photos because it could no longer communicate with the server.

    I don’t expose services to the outside world either, but I still enjoy keeping things up to date. Gives me something to do.






  • Two things:

    An article about a blockade of kayaks that were in an Eastern US port preventing warships from leaving the country to go to the war in Iraq. It was spearheaded by Quakers and was part of the impetus the Bush admin wanted to use to charge Quakers as terrorists. Quakers are one of the few religious groups that are by default conscientious objectors and cannot be drafted into the military due to the non-violence aspects of their religion. I have been able to find evidence that the Bush admin was toying with prosecuting Quakers, but not this specific event.

    An article about musicians suing their record company for money made from suing individuals for file sharing. The record companies always argued that the people doing music piracy were stealing from the musicians, but the musicians had to sue their record company to see a penny of that money.

    All together I have literally spent days and days over the years trying to find these. I have a fairly good memory and everything else I remember from that period of time I have been able to dig to find the source. These two elude me and it kills me.


  • In the docker folder with the docker-compose.yml of whatever docker container you want to upgrade:

    docker compose pull && docker compose up -d

    As others have said, for large groups of containers it’s helpful to use Watchtower.

    Immich in particular warns to backup your database before an upgrade. Also be on the lookout for breaking changes which require you to alter your docker-compose.yml file before an upgrade.

    Oh and after upgrades to remove any dangling images which sometimes take up a lot of space:

    docker image prune

    Also if you want services to be interoperable, learn about docker networking now not later and remember for static IPs you must create a user defined bridge.