101010.pl is one of the many independent Mastodon servers you can use to participate in the fediverse.
101010.pl czyli najstarszy polski serwer Mastodon. Posiadamy wpisy do 2048 znaków.

Server stats:

506
active users

#dockercompose

0 posts0 participants0 posts today

I'm curious to hear what others are #SelfHosting! Here's my current setup:

Hardware & OS

Infrastructure & Networking

Security & Monitoring

Authentication & Identity Management

  • Authelia (Docker): Just set this up for two-factor authentication and single sign-on. Seems to be working well so far!
  • LLDAP (Docker): Lightweight LDAP server for managing authentication. Also seems to be working pretty well!
    #AuthenticationTools #IdentityManagement

Productivity & Personal Tools

Notifications & Development Workflow

  • Notifications via: #Ntfy (Docker) and Zoho's ZeptoMail (#Zoho)
  • Development Environment: Mostly using VSCode connected to my server via Remote-SSH extension. #VSCodeRemote

Accessibility Focus ♿🖥️

Accessibility heavily influences my choices—I use a screen reader full-time (#ScreenReader), so I prioritize services usable without sight (#InclusiveDesign#DigitalAccessibility). Always open to discussing accessibility experiences or recommendations!

I've also experimented with:

  • Ollama (#Ollama): Not enough RAM on my Pi.
  • Habit trackers like Beaver Habit Tracker (#HabitTracking): Accessibility issues made it unusable for me.

I don't really have a media collection, so no Plex or Jellyfin here (#MediaServer)—but I'm always open to suggestions! I've gotten a bit addicted to exploring new self-hosted services! 😄

What's your setup like? Any cool services you'd recommend I try?

#SelfHosted #LinuxSelfHost #OpenSource #TechCommunity #FOSS #TechDIY

@selfhost @selfhosted @selfhosting

Comment passer correctement des secrets à docker-compose.
Ca n'est généralement pas un problème dans les environments K8s, où docker-compose n'est utilisé que sur le poste des développeurs, mais ça peut aider dans d'autres environnements ... phase.dev/blog/docker-compose- #dockercompose #secret #configuration #programming #devops

phaseManaging Secrets in Docker Compose — A Developer's Guide | Phase BlogA practical guide to securely managing secrets in Docker Compose for production deployments
Continued thread

For this who want details, here's how it looks in docker-compose.yml:


  mail:
    image: bytemark/smtp:latest # https://hub.docker.com/r/bytemark/smtp/tags
    restart: always
    environment:
      - "MAILNAME=mail.pompat.us"
      - "RELAY_NETS=172.42.0.0/16"
    networks:
      - gotosocial
    logging:
      driver: "json-file"
      options:
        max-size: "10m"
        max-file: "3"

What‘s your preferred method to backup your data from Netbox community running on Docker with Docker Compose and volumes?

I‘m trying the recommended way from Docker documentation. Currently I’ve not tested a restore.

docs.docker.com/engine/storage

Docker Documentation · "Volumes""Learn how to create, manage, and use volumes instead of bind mounts for persisting data generated and used by Docker."