commit
d7bf056487
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,2 +1,3 @@
|
||||||
.env
|
.env
|
||||||
config/
|
config/
|
||||||
|
nextcloud
|
||||||
|
|
|
@ -199,7 +199,7 @@ services:
|
||||||
image: wordpress
|
image: wordpress
|
||||||
restart: always
|
restart: always
|
||||||
ports:
|
ports:
|
||||||
- 8080:80
|
- 8089:80
|
||||||
environment:
|
environment:
|
||||||
WORDPRESS_DB_HOST: db-botc
|
WORDPRESS_DB_HOST: db-botc
|
||||||
WORDPRESS_DB_USER: exampleuser
|
WORDPRESS_DB_USER: exampleuser
|
||||||
|
@ -243,6 +243,22 @@ services:
|
||||||
MYSQL_RANDOM_ROOT_PASSWORD: '1'
|
MYSQL_RANDOM_ROOT_PASSWORD: '1'
|
||||||
volumes:
|
volumes:
|
||||||
- db-home:/var/lib/mysql
|
- 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:
|
volumes:
|
||||||
wordpress-home:
|
wordpress-home:
|
||||||
db-home:
|
db-home:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user