Search
Items tagged with: raspberry
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. 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=mydb
- MYSQL_USER=friendica
- MYSQL_PASSWORD=*****
- MYSQL_DATABASE=friendica
- FRIENDICA_ADMIN_MAIL=*****
depends_on:
- mariadb
volumes:
mydb:
friendica:
networks:
proxy-tier:
#WhereIsMySurprisedFace The engineers at the #Raspberry foundation "invented" a new non-standard 5V/5A USB PD mode for the #RPi5.
Will these people ever learn?
Here's the relevant part from the current USB PD standard, Release 3.1, Version 1.8, page 76. A 5V/5A mode simply does not exist. If you need 25W, you have the option to use 9V with 3A.That gives you 27W. So instead of adding that option to the board, they opted for developing their own non-standard power brick. Le sigh.