initial commit

This commit is contained in:
LinuxSquare 2024-01-07 22:56:45 +01:00
commit e4ffd2141e
2 changed files with 25 additions and 0 deletions

8
config.json Normal file
View file

@ -0,0 +1,8 @@
{
"network": {
"name": "noveria"
},
"container": {
"name": "nextcloud"
}
}

17
docker-compose.yml Normal file
View 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