I’m pretty sure the answer is no. Somebody can correct me if I’m wrong.
- 71 Posts
- 353 Comments
tkoto San Francisco 49ers@lemmy.world•49ers are betting the house on this rookie (and it might just pay off) — Niner NoiseEnglish1·1 month agoThis community has plenty of content during the season, and I’m pretty sure we are one of the most active NFL team communities on Lemmy. But, if you read my comment, I wasn’t suggesting banning anything… Only rewriting headlines that are clickbait. I don’t think that’s unreasonable or burdensome.
tkoto San Francisco 49ers@lemmy.world•49ers are betting the house on this rookie (and it might just pay off) — Niner NoiseEnglish11·1 month agoI was really hoping we could avoid clickbait headlines here. What do you guys think about a role that requires rewriting headlines that are clickbaity in nature?
tkoto Selfhosted@lemmy.world•how are my fellow peeps hosting your music collection these days?English111·2 months agoIt’s unpopular around here, but Plexamp is fantastic.
tkoto politics @lemmy.world•US to order 500,000 citizens of four countries to leaveEnglish4·2 months agoThese people wouldn’t be eligible to vote until they achieved citizenship, so maybe they are figuring that the optics of following through might be mobilizing for the existing voter base.
tkoto Uplifting News@lemmy.world•Schadenfreude is now banned. And many other political posts of similar nature are banned too. Low quality and fake news is also banned.English8·2 months agoIt’s 100% about being on topic. It’s especially important when most people see the content in the context of a mixed feed where they might upvote a news story that they like without noticing which community it was posted in.
tkoto Uplifting News@lemmy.world•Do we add a "no politics" and "no catharsis" rule?English23·3 months agoThis comment from yesterday’s thread was perfect, I think: https://tkohhh.social/post/289633/1295767
To quote: “War is not uplifting. Fascism is not uplifting. Pollution is not uplifting. Murder is not uplifting. Famine is not uplifting. Bigotry is not uplifting. Genocide in particular is not uplifting.”
Any of those things ENDING is uplifting news, but celebrating because a despot stubbed his toe is not uplifting.
Also, I don’t think “catharsis” and “schadenfreude” are interchangeable. When people talk about schadenfreude they are specifically talking about feeling good because something bad happened. Catharsis is a much broader term that would likely be too restrictive for this type of community.
tkoto Selfhosted@lemmy.world•Self-hosting is having a moment. Ethan Sholly knows why.English1·3 months agoThat’s like insult to injury… Docker Desktop is already way worse than running on linux!
tkoto Selfhosted@lemmy.world•Self-hosting is having a moment. Ethan Sholly knows why.English1·3 months agoI think the restrictions are just for publishing containers on Docker Hub. If you aren’t doing that, you aren’t impacted.
tkoOPto Uplifting News@lemmy.world•What went right this week: the good news that mattersEnglish91·3 months agoIt loads fine for me, and apparently for 72 other people. If there are rules about what domains are acceptable, that information should be posted on the sidebar. Until then, votes will have to be a sufficient measure of what the community thinks about it.
My pleasure! Getting this stuff together can be a pain, so I’m always trying to pay it forward. Good luck and let me know if you have any questions!
Here you go. I commented out what is not necessary. There are some passwords noted that you’ll want to set to your own values. Also, pay attention to the volume mappings… I left my values in there, but you’ll almost certainly need to change those to make sense for your host system. Hopefully this is helpful!
services: mongodb: image: "mongo:6.0" volumes: - "/mnt/user/appdata/mongo-graylog:/data/db" # - "/mnt/user/backup/mongodb:/backup" restart: "on-failure" # logging: # driver: "gelf" # options: # gelf-address: "udp://10.9.8.7:12201" # tag: "mongodb" opensearch: image: "opensearchproject/opensearch:2.13.0" environment: - "OPENSEARCH_JAVA_OPTS=-Xms1g -Xmx1g" - "bootstrap.memory_lock=true" - "discovery.type=single-node" - "action.auto_create_index=false" - "plugins.security.ssl.http.enabled=false" - "plugins.security.disabled=true" - "OPENSEARCH_INITIAL_ADMIN_PASSWORD=[yourpasswordhere]" ulimits: nofile: 64000 memlock: hard: -1 soft: -1 volumes: - "/mnt/user/appdata/opensearch-graylog:/usr/share/opensearch/data" restart: "on-failure" # logging: # driver: "gelf" # options: # gelf-address: "udp://10.9.8.7:12201" # tag: "opensearch" graylog: image: "graylog/graylog:6.2.0" depends_on: opensearch: condition: "service_started" mongodb: condition: "service_started" entrypoint: "/usr/bin/tini -- wait-for-it opensearch:9200 -- /docker-entrypoint.sh" environment: GRAYLOG_TIMEZONE: "America/Los_Angeles" TZ: "America/Los_Angeles" GRAYLOG_ROOT_TIMEZONE: "America/Los_Angeles" GRAYLOG_NODE_ID_FILE: "/usr/share/graylog/data/config/node-id" GRAYLOG_PASSWORD_SECRET: "[anotherpasswordhere]" GRAYLOG_ROOT_PASSWORD_SHA2: "[aSHA2passwordhash]" GRAYLOG_HTTP_BIND_ADDRESS: "0.0.0.0:9000" GRAYLOG_HTTP_EXTERNAL_URI: "http://localhost:9000/" GRAYLOG_ELASTICSEARCH_HOSTS: "http://opensearch:9200/" GRAYLOG_MONGODB_URI: "mongodb://mongodb:27017/graylog" ports: - "5044:5044/tcp" # Beats - "5140:5140/udp" # Syslog - "5140:5140/tcp" # Syslog - "5141:5141/udp" # Syslog - dd-wrt - "5555:5555/tcp" # RAW TCP - "5555:5555/udp" # RAW UDP - "9000:9000/tcp" # Server API - "12201:12201/tcp" # GELF TCP - "12201:12201/udp" # GELF UDP - "10000:10000/tcp" # Custom TCP port - "10000:10000/udp" # Custom UDP port - "13301:13301/tcp" # Forwarder data - "13302:13302/tcp" # Forwarder config volumes: - "/mnt/user/appdata/graylog/data:/usr/share/graylog/data/data" - "/mnt/user/appdata/graylog/journal:/usr/share/graylog/data/journal" - "/mnt/user/appdata/graylog/etc:/etc/graylog" restart: "on-failure" volumes: mongodb_data: os_data: graylog_data: graylog_journal:
Can you clarify what your concern is with “heavy” logging solutions that require database/elasticsearch? If you’re worried about system resources that’s one thing, but if it’s just that it seems “complicated,” I have a docker compose file that handles Graylog, Opensearch, and Mongodb. Just give it a couple of persistent storage volumes, and it’s good to go. You can send logs directly to it with syslog or gelf, or set up a filebeat container to ingest file logs.
There’s a LOT you can do with it once you’ve got your logs into the system, but you don’t NEED to do anything else. Just something to consider!
tkoOPto Uplifting News@lemmy.world•What went right this week: the good news that mattersEnglish12·3 months agoI love the idea of a “Migration Museum”… we need more of that in the world!
I’m far from an expert, but it seems to me that if you’re setting up your containers according to best practice you would only be mapping the specific ports needed for the service, which renders a wayward “open port” useless. If there’s some kind of UI exploit, that’s a different story. Perhaps this is why most people suggest not exposing your containerized services to the WAN. If we’re talking about a virus that might affect files, it can only see the files that are mapped to the container which limits the damage that can be done. If you are exposing sensitive files to your container, it might be worth it to vet the container more thoroughly (and make sure you have good backups).
tkoto politics @lemmy.world•New social media platform with no community guidelines, no mods and no bots. Better than Reddit with file sharing and instant messaging.English1·3 months agodeleted by creator
tkoto politics @lemmy.world•New social media platform with no community guidelines, no mods and no bots. Better than Reddit with file sharing and instant messaging.English12·3 months agoMissed the point on that one…
Federation is a tool to connect instances together. If one instance isn’t being run in a way that you like, you can and should create an account on a different instance that better aligns with your ideals. Or, if you can’t find any such instance, then you can create your own instance. This is the beauty of federation!
Have you personally asked the IT department about this? I would be concerned that they were told “no” by IT, so they are asking you to do it behind their back.