chnages
This commit is contained in:
parent
57c6a0da2e
commit
63a637f4d9
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,2 +1,3 @@
|
|||||||
music/
|
music/
|
||||||
data/
|
data/
|
||||||
|
immich/library
|
||||||
@ -1,19 +1,32 @@
|
|||||||
|
volumes:
|
||||||
|
nextcloud:
|
||||||
|
db:
|
||||||
|
|
||||||
services:
|
services:
|
||||||
nextcloud-aio-mastercontainer:
|
db:
|
||||||
image: nextcloud/all-in-one:latest
|
image: mariadb:10.6
|
||||||
container_name: nextcloud-aio-mastercontainer
|
restart: always
|
||||||
|
command: --transaction-isolation=READ-COMMITTED --log-bin=binlog --binlog-format=ROW
|
||||||
|
volumes:
|
||||||
|
- db:/var/lib/mysql
|
||||||
|
environment:
|
||||||
|
- MYSQL_ROOT_PASSWORD=alosimet
|
||||||
|
- MYSQL_PASSWORD=alosimet
|
||||||
|
- MYSQL_DATABASE=nextcloud
|
||||||
|
- MYSQL_USER=nextcloud
|
||||||
|
|
||||||
|
|
||||||
|
app:
|
||||||
|
image: nextcloud
|
||||||
restart: always
|
restart: always
|
||||||
ports:
|
ports:
|
||||||
- "80:80"
|
- 8080:80
|
||||||
- "8080:8080"
|
links:
|
||||||
- "8443:8443"
|
- db
|
||||||
volumes:
|
volumes:
|
||||||
- aio_mastercontainer:/mnt/docker-aio-config
|
- nextcloud:/var/www/html
|
||||||
- /var/run/docker.sock:/var/run/docker.sock:ro
|
environment:
|
||||||
stdin_open: true
|
- MYSQL_PASSWORD=alosimet
|
||||||
tty: true
|
- MYSQL_DATABASE=nextcloud
|
||||||
|
- MYSQL_USER=nextcloud
|
||||||
volumes:
|
- MYSQL_HOST=db
|
||||||
aio_mastercontainer:
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user