25
submitted 53 minutes ago by boydster@sh.itjust.works to c/politics@lemmy.world

Paraphrasing his psychotic post that they are discussing in this article: "Bullets are flying, the war has begun, the Immigrant Problem must be brought to a final solution!"

[-] boydster@sh.itjust.works 9 points 1 hour ago

His own words and actions do it pretty well

Yup! It's like he's envisioning the prelude to the Holocaust and wanting to bring it into the modern day. This is from earlier today on his dumpster fire of a site:

Trump's rhetoric making Trump seem like the next Hitler

[-] boydster@sh.itjust.works 6 points 16 hours ago

I'm down for whatever gets the spotlight shone

[-] boydster@sh.itjust.works 93 points 20 hours ago

People need to call it what it is, as often as needed: stochastic terrorism

[-] boydster@sh.itjust.works 28 points 3 days ago

"Karl Rove is a RINO" incoming...

[-] boydster@sh.itjust.works 73 points 1 month ago

How do they work?

[-] boydster@sh.itjust.works 44 points 1 month ago

Next time have the competition someplace sensible. Like a school. It just wasn't our natural setting.

[-] boydster@sh.itjust.works 106 points 2 months ago

"What do you say to the Proud Boys?"

  • "I don't know them, but stand back and stand by"

"What do you say about Project 2025?"

  • "I don't know them, but I wish them well"

Cool. Cool cool cool.

[-] boydster@sh.itjust.works 41 points 2 months ago

A møøse ønce bit my sister

[-] boydster@sh.itjust.works 279 points 2 months ago

Strange women lying in ponds distributing swords as a basis for a system of government.

[-] boydster@sh.itjust.works 39 points 3 months ago

Instead of forking so much of our tax dollars directly over to corporations, how about we try dispensing those awards directly to the American people so we can spend it where we think will be best?

Let's just end the thing where the government transfers money to corporations. They like healthy competition, right? So if your corpo doesn't get their fun-money because I spend my kickback funds elsewhere, that's just business, right?

The money will all trickle up! It'll be great for the corpos and rich folks.

[-] boydster@sh.itjust.works 92 points 4 months ago* (last edited 4 months ago)

But why were the police even called?

Before the police were called, Martin and his co-workers made two trips to the SUV that Floyd was sitting in outside Cup Foods, trying to get him to come back to the store, Martin said. He recalled telling Floyd and his friends that the bill Floyd had just used was fake, and that his boss wanted to talk to him.

All I'm saying is, the consequences aren't as simple as "some homeless lowlife goes to jail lol" like the guy in the article seems to feel in his heart. Sometimes a counterfeit bill results in a 9- minute long public execution followed months of societal pain.

ETA: Johnny McEntee! That's the asshole's name. Johnny McEntee is the asshole that is trying to get homeless people into situations involving police over counterfeit money. Police that sometimes decide murder is a best path to justice for poor people with counterfeit money legal issus. Fuck that guy.

[-] boydster@sh.itjust.works 209 points 4 months ago* (last edited 4 months ago)

Didn't George Floyd get murdered because he paid with a counterfeit? And assholes like this are proud of it.

27
submitted 6 months ago* (last edited 6 months ago) by boydster@sh.itjust.works to c/linux@lemmy.ml

After seeing someone else posting their struggles with getting Docker running on their system, I thought I might share my process for setting up new Docker nodes. I don't make any representations about my way being the right way, or the best way, but this way has been working for me. I have been playing around with a swarm, but if you aren't setting up a swarm you can just omit the swarm commands and some of the firewall allows (keep what you need open, obviously, like 22 for SSH if you're using it). Similarly, if you aren't connecting to a NAS, you can leave out the part about mounting external storage.

# new Docker Swarm node setup from fresh Debian Netinst

# as root, all nodes
apt install sudo
usermod -aG sudo [user]
logout

# as [user], all nodes
sudo apt update
sudo apt upgrade -y
sudo apt install fail2ban rkhunter ufw unattended-upgrades ca-certificates curl -y
sudo ufw allow 22 
sudo ufw allow 2377
sudo ufw allow 7946
sudo ufw allow 4789
sudo ufw enable
sudo install -m 0755 -d /etc/apt/keyrings
sudo curl -fsSL https://download.docker.com/linux/debian/gpg -o /etc/apt/keyrings/docker.asc
sudo chmod a+r /etc/apt/keyrings/docker.asc
echo \
  "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/debian \
  $(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
  sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt update
sudo apt install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin -y
sudo usermod -aG docker [user]

## Shared Storage Stuff, all nodes ##

nano ~/.smbcredentials
# paste the following:
#   username=[cluserUser]
#   password=[clusterPW]
#
# add mount point for shared storage
sudo nano /etc/fstab
# add the following to the bottom:
# /[NAS.IP.Address]/[ClusterStorageFolder]/ /home/[user]/share cifs credentials=/home/[user]/.smbcredentials 0 0

# on main node only
docker swarm init --advertise-address 
  #  copy the join command, we'll need it next

# on any additional nodes, paste the command copied above
docker swarm join [...all the rest of the command...]

# for each docker container, on any manager node
mkdir ~/share/[serviceName]  
cd ~/share/[serviceName]
  #  copy relevant compose.yml into the folder
  #  if necessary, also create any needed directories
docker compose up -d
docker compose down
docker stack deploy -c compose.yml
view more: next ›

boydster

joined 1 year ago