mirror of
https://github.com/friendica/docker
synced 2026-04-16 15:27:45 +02:00
Bugfixing & Upgrading
- upgrade version - fixing alpine Dockerfile (openssl to libressl) - adding examples for SSMTP - README updates & bugfixing - Removed shell-script "friendica" - Removed old .htconfig - Adding SMTP example - Upgrading docker-compose files - Added upgrade.exclude list
This commit is contained in:
parent
b876d92b54
commit
8493e35da4
77 changed files with 2419 additions and 3988 deletions
104
stack.yml
104
stack.yml
|
|
@ -1,55 +1,51 @@
|
|||
version: '3.2'
|
||||
|
||||
services:
|
||||
db:
|
||||
image: mariadb
|
||||
restart: always
|
||||
volumes:
|
||||
- db:/var/lib/mysql
|
||||
environment:
|
||||
- MYSQL_USER=friendica
|
||||
- MYSQL_PASSWORD=friendica
|
||||
- MYSQL_DATABASE=friendica
|
||||
- MYSQL_RANDOM_ROOT_PASSWORD=yes
|
||||
|
||||
app:
|
||||
image: friendica/server
|
||||
restart: always
|
||||
ports:
|
||||
- 8080:80
|
||||
volumes:
|
||||
- friendica:/var/www/html
|
||||
environment:
|
||||
- AUTOINSTALL=true
|
||||
- MYSQL_HOST=db
|
||||
- MYSQL_PORT=3306
|
||||
- MYSQL_USER=friendica
|
||||
- MYSQL_PASSWORD=friendica
|
||||
- MYSQL_DATABASE=friendica
|
||||
- MAILNAME=root@friendica.local
|
||||
- SITENAME=Friendica PWD Test Node
|
||||
- VALIDATION=false
|
||||
hostname: friendica.local
|
||||
depends_on:
|
||||
- db
|
||||
|
||||
cron:
|
||||
image: friendica/server
|
||||
restart: always
|
||||
volumes:
|
||||
- friendica:/var/www/html
|
||||
entrypoint: /cron.sh
|
||||
environment:
|
||||
- MYSQL_HOST=db
|
||||
- MYSQL_PORT=3306
|
||||
- MYSQL_USER=friendica
|
||||
- MYSQL_PASSWORD=friendica
|
||||
- MYSQL_DATABASE=friendica
|
||||
- MAILNAME=root@friendica.local
|
||||
- SITENAME=Friendica PWD Test Node
|
||||
depends_on:
|
||||
- db
|
||||
|
||||
volumes:
|
||||
db:
|
||||
version: '3.2'
|
||||
|
||||
services:
|
||||
db:
|
||||
image: mariadb
|
||||
restart: always
|
||||
volumes:
|
||||
- db:/var/lib/mysql
|
||||
environment:
|
||||
- MYSQL_USER=friendica
|
||||
- MYSQL_PASSWORD=friendica
|
||||
- MYSQL_DATABASE=friendica
|
||||
- MYSQL_RANDOM_ROOT_PASSWORD=yes
|
||||
|
||||
app:
|
||||
image: friendica/server
|
||||
restart: always
|
||||
ports:
|
||||
- 8080:80
|
||||
volumes:
|
||||
- friendica:/var/www/html
|
||||
environment:
|
||||
- MYSQL_HOST=db
|
||||
- MYSQL_USER=friendica
|
||||
- MYSQL_PASSWORD=friendica
|
||||
- MYSQL_DATABASE=friendica
|
||||
- FRIENDICA_ADMIN_MAIL=root@friendica.local
|
||||
- SITENAME=Friendica PWD Test Node
|
||||
hostname: friendica.local
|
||||
depends_on:
|
||||
- db
|
||||
|
||||
cron:
|
||||
image: friendica/server
|
||||
restart: always
|
||||
volumes:
|
||||
- friendica:/var/www/html
|
||||
entrypoint: /cron.sh
|
||||
environment:
|
||||
- MYSQL_HOST=db
|
||||
- MYSQL_USER=friendica
|
||||
- MYSQL_PASSWORD=friendica
|
||||
- MYSQL_DATABASE=friendica
|
||||
- FRIENDICA_ADMIN_MAIL=root@friendica.local
|
||||
- SITENAME=Friendica PWD Test Node
|
||||
depends_on:
|
||||
- db
|
||||
|
||||
volumes:
|
||||
db:
|
||||
friendica:
|
||||
Loading…
Add table
Add a link
Reference in a new issue