feat: add gitea-act-runner
This commit is contained in:
21
nextcloud/docker-compose-nextcloud.yml
Normal file
21
nextcloud/docker-compose-nextcloud.yml
Normal 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
|
||||
Reference in New Issue
Block a user