add nginx example conf

This commit is contained in:
eneller
2023-12-30 15:40:00 +01:00
parent ee484249ee
commit fc27b5ebbd
7 changed files with 16 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
services:
db:
image: mariadb:10.6
restart: always
command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW
volumes:
- ./db:/var/lib/mysql
env_file:
- env
app:
image: nextcloud:27
restart: always
ports:
- 50000:80
links:
- db
volumes:
- ./nextcloud:/var/www/html
env_file:
- env