initial commit
This commit is contained in:
commit
e4ffd2141e
2 changed files with 25 additions and 0 deletions
8
config.json
Normal file
8
config.json
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
{
|
||||||
|
"network": {
|
||||||
|
"name": "noveria"
|
||||||
|
},
|
||||||
|
"container": {
|
||||||
|
"name": "nextcloud"
|
||||||
|
}
|
||||||
|
}
|
17
docker-compose.yml
Normal file
17
docker-compose.yml
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
version: '2'
|
||||||
|
services:
|
||||||
|
app:
|
||||||
|
image: nextcloud:fpm
|
||||||
|
restart: always
|
||||||
|
volumes:
|
||||||
|
- ./data:/var/www/html
|
||||||
|
environment:
|
||||||
|
- MYSQL_PASSWORD=
|
||||||
|
- MYSQL_DATABASE=nextcloud
|
||||||
|
- MYSQL_USER=nextcloud
|
||||||
|
- MYSQL_HOST=noveria_db
|
||||||
|
|
||||||
|
networks:
|
||||||
|
default:
|
||||||
|
external: true
|
||||||
|
name: noveria
|
Loading…
Reference in a new issue