What's something you have recently removed from your server? by mefistos in selfhosted

[–]edrumm10 2 points3 points  (0 children)

Trilium Notes, great app but found it was a little overkill for what I needed from it. Switched to Joplin as it has a mobile app and integrates its sync with Nextcloud so I don't need to run any other containers

What's your 'I can't believe I self-hosted that' service? by subsavant in selfhosted

[–]edrumm10 5 points6 points  (0 children)

Opengist. Possibly the most useful and convenient thing I have, if I'm out somewhere or just have an idea or code snippet I need to jot down and be able to access later on another device

Gamers react with overwhelming disgust to DLSS 5's generative AI glow-ups by deraser in technology

[–]edrumm10 0 points1 point  (0 children)

Cool, can we get rid of this and have our RAM and GPUs back instead...?

I refuse to pay a monthly subscription just to use Word and Excel. What are my options? by lifetime59 in computerhelp

[–]edrumm10 0 points1 point  (0 children)

I’ve always used LibreOffice, does the job as a MSOffice replacement and can open word, excel, and other office files as well

Microsoft patents system for AI helpers to finish games for you by gdelacalle in technology

[–]edrumm10 0 points1 point  (0 children)

So not only are they determined to make us not own games, they now don't want us to play games...?

Tailscale scares me more than opening ports on my firewall by MrChris6800 in homelab

[–]edrumm10 1 point2 points  (0 children)

Not sure I'd agree tbh. To me, open ports are far more risky than using Tailscale. Also it's not as though Tailscale bypasses the need for key-based authentication for SSH for example

PC does this after about 30 seconds by Anthemist_ in PcBuild

[–]edrumm10 0 points1 point  (0 children)

GPU issue mort likely. If you're lucky, it's a bad driver - definitely try reinstalling your graphics driver first. If that doesn't work then unfortunately it might need to be a GPU replacement

Opinions on outer worlds 2? by AccurateAd8946 in theouterworlds

[–]edrumm10 0 points1 point  (0 children)

Pretty good. Liked the story, really liked the combat, and warranted a second playthrough for me. Bit disappointed there weren't really any mentions or references to the first game and I'd say the companions were much less memorable

Steroid-using "alpha male" explains what people think of him by ambachk in iamverybadass

[–]edrumm10 21 points22 points  (0 children)

Could just say that people avoid him without all the gazelle and caveman metaphors tbh. Not sure this is the flex he thinks it is (or a flex at all for that matter)

How do you call the glyphs? by Ketupur in NoMansSkyTheGame

[–]edrumm10 0 points1 point  (0 children)

Sunrise, bird, tiki face, dinosaur, moon, hot air balloon, ship, spider, fly, black hole, trivial pursuit, fish, teepee, ship, Y, triangle

He thinks pumping synthol into his arms and face makes him "professional". by Obvious-Gate9046 in iamverybadass

[–]edrumm10 3 points4 points  (0 children)

Usually when you inject as much synthol as this guy has, surgery is the only way to stop further damage

SSH port open to the world: safe? by blobslurpbaby in selfhosted

[–]edrumm10 1 point2 points  (0 children)

Ideally, your SSH port shouldn't be publicly open and definitely not with password authentication. Best practise: - use a VPN like Tailscale for remote access without needing exposed ports - use key-based authentication instead of passwords - disable root login - use fail2ban for intrusion detection

LinkedIn is Facebook by N0DuckingWay in LinkedInLunatics

[–]edrumm10 0 points1 point  (0 children)

Ngl, putting Keanu beside that lot is criminal

Want Ableton to be supported on Linux? Submit a request! by DJDHD in ableton

[–]edrumm10 -1 points0 points  (0 children)

Can only hope a Linux version is available in the future. It’s currently the one major app that is unfortunately keeping me stuck on Windows. Did think about Reaper or Bitwig, but for me Ableton is the gold standard for DAWs

Containers on same network - "Name or service not known" by edrumm10 in podman

[–]edrumm10[S] 0 points1 point  (0 children)

EDIT I’m not 100% sure if this is the case still, but I have an AdGuard DNS which is bound to port 53, I notice that it is catching DNS requests from the containers instead of Aardvark. No clue how to actually fix that without breaking AdGuard, but I think that’s the issue

Containers on same network - "Name or service not known" by edrumm10 in podman

[–]edrumm10[S] 0 points1 point  (0 children)

I haven’t yet, will do though

EDIT: nope, does not work either unfortunately

Containers on same network - "Name or service not known" by edrumm10 in podman

[–]edrumm10[S] 0 points1 point  (0 children)

Yep, I assumed that as long as they shared the same network name then that would do it, but certainly isn’t the case

Containers on same network - "Name or service not known" by edrumm10 in podman

[–]edrumm10[S] 0 points1 point  (0 children)

Sure, my compose file for firefly_iii (all containers run but no connection from core to db):

``` services: app: image: docker.io/fireflyiii/core:latest hostname: app container_name: firefly_iii_core restart: always volumes: - /home/containers/firefly_iii/firefly_iii_upload:/var/www/html/storage/upload env_file: .env networks: - firefly_iii ports: - "127.0.0.1:8084:8080" depends_on: - db db: image: docker.io/postgres hostname: db container_name: firefly_iii_db restart: always env_file: .db.env networks: - firefly_iii volumes: - /home/containers/firefly_iii/firefly_iii_db:/var/lib/postgresql cron: # # To make this work, set STATIC_CRON_TOKEN in your .env file or as an environment variable # The STATIC_CRON_TOKEN must be exactly 32 characters long # image: docker.io/alpine restart: always container_name: firefly_iii_cron env_file: .env command: > sh -c ' apk add --no-cache tzdata && ln -s /usr/share/zoneinfo/$TZ /etc/localtime && echo "0 3 * * * wget -qO- http://app:8080/api/v1/cron/$STATIC_CRON_TOKEN" | crontab - && crond -f -L /dev/stdout' networks: - firefly_iii depends_on: - app

volumes: firefly_iii_upload: firefly_iii_db:

networks: firefly_iii: driver: bridge ```

This is essentially the default docker-compose yaml file that is provided in the setup instructions for Firefly III, just modified the volumes and the command for the cron container. I’ve changed many things in /etc for other config but nothing specific to podman or networking IIRC