Skip to main content

Search

Items tagged with: container


Friendica Installation

Ich versuche gerade die #Fediverse Anwendung #Friendica auf meinem #Raspberry Pi 5 in einem #Podman #Container zu installieren. Aber bei der Datenbank ist Schluss. da bleibt es hÀngen. Und mit TLS stimmt auch irgendwas nicht. Weiß jemand Rat? @Friendica Support zum Beispiel?

version: "3.7"

services:

  mariadb:
    image: docker.io/library/mariadb:latest
    restart: always
    volumes:
      - mydb:/var/lib/mysql
    ports:
      - "6033:3306"
    environment:
      MYSQL_ROOT_PASSWORD: *****
      MYSQL_DATABASE: friendica
      MYSQL_USER: friendica
      MYSQL_PASSWORD: *****

  phpmyadmin:
    container_name: phpmyadmin_9092
    image: docker.io/library/phpmyadmin:latest
    restart: always
    ports:
      - "9092:80"
    environment:
      - PMA_ARBITRARY=1
      - PMA_HOST=mariadb
    depends_on:
      - mariadb

  app:
    image: docker.io/library/friendica
    container_name: friendica_9093
    restart: always
    volumes:
      - friendica:/var/www/html    
    ports:
      - "9093:80"
    environment:
      - MYSQL_HOST=localhost
      - MYSQL_USER=friendica
      - MYSQL_PASSWORD=*****
      - MYSQL_DATABASE=friendica
      - FRIENDICA_ADMIN_MAIL=*****
    depends_on:
      - mariadb

volumes:
  mydb:
  friendica:

networks:
  proxy-tier:


Next up at #FrOSCon : @tormath1 Mathieu and Julian @apricote talk about news and happenings in and around #flatcar #container #linux - new vendors support, ClusterAPI updates, and the latest on #systemd #sysext .
The presentation will commence in about 5 minutes; abstract is here https://programm.froscon.org/2024/events/3038.html

The live stream for the talk is here: https://streaming.media.ccc.de/froscon/HS5


Recording of the #flatcar #container #linux talk ""Day 2 Ops" Linux for Kubernetes and Container Workloads" at #FrOSCon is now available: https://media.ccc.de/v/froscon2024-3103-day_2_ops_linux_for_kubernetes_and_container_workloads


"Day 2 ops" presentation featuring #Flatcar #container #linux at #FrOSCon will start in a little less than 2 hours (4:30pm CEST) - drop by if you're around! More info here: https://programm.froscon.org/mobil/#talk_3103

There's also a live stream of that room if you're not attending: https://streaming.media.ccc.de/froscon/HS3


Free e-book in PDF format, "Container storage for dummies"

#container #containers #storage #ebook


Containers: Just Because Everyone Else is Doing Them Wrong, Doesn't Mean You Have To - hastexo - https://www.hastexo.com/blogs/florian/2016/02/21/containers-just-because-everyone-else/#.Vsq7z5OLSjJ

#docker #lxc #linux #container
Containers: Just Because Everyone Else is Doing Them Wrong, Doesn't Mean You Have ToImage/photo

The recent CVE-2015-7547 vulnerability in glibc exposed a common antipattern in container management. Here's what you can do to avoid it, and instead adopt a container management pattern that will preserve your sanity and enable you to react to critical issues in minutes.


⇧