0
0
Fork 0
mirror of https://github.com/nextcloud/docker.git synced 2025-04-25 04:40:55 +02:00

Add insecure docker-compose examples for fpm

This commit is contained in:
Tilo Spannagel 2017-08-13 16:08:39 +02:00
parent 0ba11e9ca3
commit f1515a32dc
No known key found for this signature in database
GPG key ID: B89F1626A58E1429
16 changed files with 643 additions and 0 deletions

View file

@ -0,0 +1,58 @@
version: '3'
services:
db:
image: mariadb
# image: mysql
restart: always
volumes:
- db:/var/lib/mysql
environment:
- MYSQL_ROOT_PASSWORD=
env_file:
- db.env
redis:
image: redis
restart: always
app:
build: ./app
restart: always
volumes:
- nextcloud:/var/www/html
env_file:
- db.env
web:
image: nginx
restart: always
ports:
- 8080:80
volumes:
- nextcloud:/var/www/html:ro
- ./nginx.conf:/etc/nginx/nginx.conf:ro
cron:
build: ./app
restart: always
volumes:
- nextcloud:/var/www/html
user: www-data
entrypoint: |
bash -c 'bash -s <<EOF
trap "break;exit" SIGHUP SIGINT SIGTERM
while [ ! -f /var/www/html/config/config.php ]; do
sleep 1
done
while true; do
php -f /var/www/html/cron.php
sleep 15m
done
EOF'
volumes:
db:
nextcloud: