

I can’t say I agree or disagree because I don’t have any data to prove your right nor wrong. I can say that I understand some shit people give Java but your argument was a first for me. I was intrigued.
I can’t say I agree or disagree because I don’t have any data to prove your right nor wrong. I can say that I understand some shit people give Java but your argument was a first for me. I was intrigued.
That’s the first time I ever hear someone call Java a legacy language.
Is it considered best practice to run a bunch of different compose files, and update them all separately?
tl;dr I do one compose file per application/folder because I found that to suite me best.
I knew about docker and what is was for a long time, but just recently started to use it (past year or so) so I’m no expert . Before docker, I had one VM for each application I wanted and if I messed something up (installed something and it broke or something), I just removed the entier VM and made a new one. This also comes with the problem that every VM needs to be stopped before the host can be shutdown, and startup took more work to ensure that it worked correctly.
Here is a sample of my layout:
.
├──audiobookshelf
│ ├──config
├──diun
│ └───data
├──jellyfin
├──kuma
├──mealie
│ ├──data
│ └──pgdata
├──n8n
│ ├──n8n_data
│ └──n8n_files
├──paperless
│ ├──consume
│ └──export
├──syncthing
│ └──data
└───tasksmd
└──config
I considered using one compose file and put everything in it by opted to instead use one file for each project. Using one compose file for everything would make it difficult to stop just one application. And by having it split into separate folders, I can just remove everything in it if I mess up and start a new container.
As for updating, I made script that pulls everything:
#!/bin/bash
function docker_update {
cd $1
docker compose down && docker compose pull && docker compose up -d
}
docker_update "/path/to/app1"
docker_update "/path/to/app2"
docker_update "/path/to/app3"
Here is a small sample from my n8n compose file (not complete file):
services:
db:
container_name: n8n-db
image: postgres
...
networks:
- n8n-network
adminer:
container_name: n8n-db-adminer
image: adminer
restart: unless-stopped
ports:
- 8372:8080
networks:
- shared-network
- n8n-network
n8n:
container_name: n8n
networks:
- n8n-network
- shared-network
depends_on:
db:
condition: service_healthy
volumes:
db_data:
networks:
n8n-network:
shared-network:
external: true
shared-network
is shared between Caddy and any containter I need to access to externally (reverse proxy) and then one network that is shared between the applications.
It’s a spring framework project. It is a solid choice if Java is your language and you need a predefined web server to build on.
Also, what is odd with Java?
Love docker. Updating has never been easier.
I am currently looking into borg because it can take incremental backups. I just need figure out how I should handle a running system, if I need to turn of all my docker images or if there is some kind of snapshot function I can use.
From what I read on their FAQ, Borg cannot verify the integrity so I would need to turn everything off during the backup process. A filesystem like ZFS could have solved that problem (cannot find the link, something about shadow copy I think?) but since I don’t have a backup yet nor physical access, I need to work with what I have.
I think I will set it to take a backup every night.
EDIT: Maybe it can verify integrity? Still trying to find information on my use case. https://borgbackup.readthedocs.io/en/stable/usage/check.html
Here is the commit https://github.com/LemmyNet/lemmy-docs/commit/b3bd2afd6af18e71048ade7e82b541ff903a5a42
It creates the docker file and updates the docs to (among other things) point to the he file, the old being https://raw.githubusercontent.com/LemmyNet/lemmy-ansible/main/templates/docker-compose.yml.
I wonder why it does not point to the main repo. The PR does not discuss the it. https://github.com/LemmyNet/lemmy-docs/pull/315
You are right, that is sus. The main repo does not have this and the docs repo have the main as a sub module, but still have a folder named assets with a different docker-compose.yml.
Would have been nice with a link from the start.
I would fix it if we had a link. This problem is not present in the main branch.
https://github.com/LemmyNet/lemmy/blob/main/docker/docker-compose.yml
environment:
# this needs to match the hostname defined in the lemmy service
- LEMMY_UI_LEMMY_INTERNAL_HOST=lemmy:8536
# set the outside hostname here
- LEMMY_UI_LEMMY_EXTERNAL_HOST=localhost:1236
- LEMMY_UI_HTTPS=false
- LEMMY_UI_DEBUG=true
Do you have a link to the file you used which has this problem?
Why would they not unlock the victims data if they pay? Doesn’t that defeat the whole purpose of ransomware?
The article even points this out:
However, it also ruins negotiations when victims realize that Anubis has already deleted their files for good.
Accidental reply
https://truthsocial.com/@llijh/posts/114604139396491788
Original post not made by Trump but shared by him. Reading it, it feels more like a joke/shitpost.
How do you know which headers to set? I couldn’t find any documentation when I last tried (but that was some years ago now).
In every news article I have read that has contained an intervju with a Trump supporter, they have said that they do not believe which every accusation was asked about. Trump’s repeated claims about “fake news” does seem to work really well.
You may have seen reports of leaks of older text messages that had previously been sent to Steam customers. We have examined the leak sample and have determined this was NOT a breach of Steam systems.
We’re still digging into the source of the leak, which is compounded by the fact that any SMS messages are unencrypted in transit, and routed through multiple providers on the way to your phone.
The leak consisted of older text messages that included one-time codes that were only valid for 15-minute time frames and the phone numbers they were sent to. The leaked data did not associate the phone numbers with a Steam account, password information, payment information or other personal data. Old text messages cannot be used to breach the security of your Steam account, and whenever a code is used to change your Steam email or password using SMS, you will receive a confirmation via email and/or Steam secure messages.
You do not need to change your passwords or phone numbers as a result of this event. It is a good reminder to treat any account security messages that you have not explicitly requested as suspicious. We recommend regularly checking your Steam account security at any time at
https://store.steampowered.com/account/authorizeddevices
We also recommend setting up the Steam Mobile Authenticator if you haven’t already, as it gives us the best way to send secure messages about your account and your account’s safety.
Isn’t the implication that the US and A is not great because of the Democrats?
Feels like the one who created this didn’t want to do step 3 to 5 for all levels.
I don’t get it, what should the link convey?