mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-21 17:56:53 +02:00
add friendica
This commit is contained in:
parent
9590aa1994
commit
c3795ba178
@ -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
8
friendica/README.md
Normal 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/
|
29
friendica/docker-compose.yml
Normal file
29
friendica/docker-compose.yml
Normal 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
|
Loading…
Reference in New Issue
Block a user