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 apache

This commit is contained in:
Tilo Spannagel 2017-07-13 17:50:04 +02:00
parent 6a54981de4
commit 83b027fbae
No known key found for this signature in database
GPG key ID: B89F1626A58E1429
17 changed files with 211 additions and 0 deletions

View file

@ -0,0 +1,28 @@
version: '3'
services:
db:
image: mariadb
restart: always
volumes:
- db:/var/lib/mysql
environment:
- MYSQL_ROOT_PASSWORD=
env_file:
- db.env
app:
build: ./app
restart: always
ports:
- 8080:80
volumes:
- nextcloud:/var/www/html
env_file:
- db.env
links:
- db
volumes:
db:
nextcloud: