0
0
Fork 0
mirror of https://github.com/nextcloud/docker.git synced 2024-11-20 12:06:41 +01:00

Compare commits

..

No commits in common. "fb95b6013c7c14d10eadd201dd95adbe0f0ed5ff" and "777afa10cbfcf0b383801dc9dfdfe70614b3d338" have entirely different histories.

6 changed files with 31 additions and 7 deletions

View file

@ -68,7 +68,7 @@ The following Dockerfile commands are also necessary for a sucessfull cron insta
In `docker-compose` additional services are bundled to create a complete nextcloud installation. The examples are designed to run out-of-the-box. In `docker-compose` additional services are bundled to create a complete nextcloud installation. The examples are designed to run out-of-the-box.
Before running the examples you have to modify the `db.env` and `compose.yaml` file and fill in your custom information. Before running the examples you have to modify the `db.env` and `compose.yaml` file and fill in your custom information.
The docker compose examples make heavily use of derived Dockerfiles to add configuration files into the containers. This way they should also work on remote docker systems as _Docker for Windows_. When running docker compose on the same host as the docker daemon, another possibility would be to simply mount the files in the volumes section in the `compose.yaml` file. The docker-compose examples make heavily use of derived Dockerfiles to add configuration files into the containers. This way they should also work on remote docker systems as _Docker for Windows_. When running docker compose on the same host as the docker daemon, another possibility would be to simply mount the files in the volumes section in the `compose.yaml` file.
### insecure ### insecure

View file

@ -1,7 +1,7 @@
services: services:
db: db:
image: mariadb:10.6 image: mariadb:10.6
command: --transaction-isolation=READ-COMMITTED --log-bin --binlog-format=ROW command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW
restart: always restart: always
volumes: volumes:
- db:/var/lib/mysql:Z - db:/var/lib/mysql:Z

View file

@ -1,7 +1,7 @@
services: services:
db: db:
image: mariadb:10.6 image: mariadb:10.6
command: --transaction-isolation=READ-COMMITTED --log-bin --binlog-format=ROW command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW
restart: always restart: always
volumes: volumes:
- db:/var/lib/mysql:Z - db:/var/lib/mysql:Z

View file

@ -1,7 +1,7 @@
services: services:
db: db:
image: mariadb:10.6 image: mariadb:10.6
command: --transaction-isolation=READ-COMMITTED --log-bin --binlog-format=ROW command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW
restart: always restart: always
volumes: volumes:
- db:/var/lib/mysql:Z - db:/var/lib/mysql:Z

View file

@ -1,7 +1,7 @@
services: services:
db: db:
image: mariadb:10.6 image: mariadb:10.6
command: --transaction-isolation=READ-COMMITTED --log-bin --binlog-format=ROW command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW
restart: always restart: always
volumes: volumes:
- db:/var/lib/mysql:Z - db:/var/lib/mysql:Z

View file

@ -296,9 +296,13 @@ services:
db: db:
image: mariadb:10.6 image: mariadb:10.6
restart: always restart: always
command: --transaction-isolation=READ-COMMITTED --log-bin --binlog-format=ROW command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW
volumes: volumes:
- db:/var/lib/mysql - db:/var/lib/mysql
logging:
driver: "json-file"
options:
max-size: "50m"
environment: environment:
- MYSQL_ROOT_PASSWORD= - MYSQL_ROOT_PASSWORD=
- MYSQL_PASSWORD= - MYSQL_PASSWORD=
@ -314,6 +318,10 @@ services:
restart: always restart: always
ports: ports:
- 8080:80 - 8080:80
logging:
driver: "json-file"
options:
max-size: "50m"
depends_on: depends_on:
- redis - redis
- db - db
@ -344,9 +352,13 @@ services:
db: db:
image: mariadb:10.6 image: mariadb:10.6
restart: always restart: always
command: --transaction-isolation=READ-COMMITTED --log-bin --binlog-format=ROW command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW
volumes: volumes:
- db:/var/lib/mysql - db:/var/lib/mysql
logging:
driver: "json-file"
options:
max-size: "50m"
environment: environment:
- MYSQL_ROOT_PASSWORD= - MYSQL_ROOT_PASSWORD=
- MYSQL_PASSWORD= - MYSQL_PASSWORD=
@ -360,6 +372,10 @@ services:
app: app:
image: nextcloud:fpm image: nextcloud:fpm
restart: always restart: always
logging:
driver: "json-file"
options:
max-size: "50m"
depends_on: depends_on:
- redis - redis
- db - db
@ -397,6 +413,10 @@ services:
db: db:
image: postgres image: postgres
restart: always restart: always
logging:
driver: "json-file"
options:
max-size: "50m"
volumes: volumes:
- db:/var/lib/postgresql/data - db:/var/lib/postgresql/data
environment: environment:
@ -414,6 +434,10 @@ services:
app: app:
image: nextcloud image: nextcloud
restart: always restart: always
logging:
driver: "json-file"
options:
max-size: "50m"
ports: ports:
- 8080:80 - 8080:80
volumes: volumes: