Merge pull request #1 from bjageman/nextcloud

Nextcloud
This commit is contained in:
Braden Jageman 2024-04-16 23:06:10 -04:00 committed by GitHub
commit d7bf056487
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 18 additions and 1 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
.env
config/
nextcloud

View File

@ -199,7 +199,7 @@ services:
image: wordpress
restart: always
ports:
- 8080:80
- 8089:80
environment:
WORDPRESS_DB_HOST: db-botc
WORDPRESS_DB_USER: exampleuser
@ -243,6 +243,22 @@ services:
MYSQL_RANDOM_ROOT_PASSWORD: '1'
volumes:
- db-home:/var/lib/mysql
#Nextcloud
nextcloud:
image: lscr.io/linuxserver/nextcloud:latest
container_name: nextcloud
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
- VIRTUAL_HOST=nextcloud.${DOMAIN}
volumes:
- ./config/nextcloud:/config
- ./nextcloud:/data
ports:
- 443:443
restart: unless-stopped
volumes:
wordpress-home:
db-home: