add friendica

This commit is contained in:
kev 2021-09-28 14:32:54 +08:00
parent 9590aa1994
commit c3795ba178
3 changed files with 38 additions and 0 deletions

View File

@ -319,6 +319,7 @@ A collection of delicious docker recipes.
- [x] audreyt/ethercalc
- [x] flogo/flogo-docker
- [x] mher/flower
- [x] friendica
- [x] ghost
- [x] gitlab/gitlab-ce
- [x] atlassianlabs/gostatsd

8
friendica/README.md Normal file
View File

@ -0,0 +1,8 @@
friendica
=========
[Friendica][1] is a free and open-source software distributed social network. It
forms one part of the Fediverse, an interconnected and decentralized network of
independently operated servers.
[1]: https://friendi.ca/

View File

@ -0,0 +1,29 @@
version: '3.8'
services:
friendica:
image: friendica
volumes:
- ./data/friendica:/var/www/html
ports:
- "8080:80"
environment:
- MYSQL_HOST=mysql
- MYSQL_DATABASE=friendica
- MYSQL_USER=friendica
- MYSQL_PASSWORD=friendica
- FRIENDICA_ADMIN_MAIL=username@gmail.com
depends_on:
- mysql
restart: unless-stopped
mysql:
image: mariadb
volumes:
- ./data/mysql:/var/lib/mysql
environment:
- MYSQL_DATABASE=friendica
- MYSQL_USER=friendica
- MYSQL_PASSWORD=friendica
restart: unless-stopped