mirror of
https://github.com/nextcloud/docker.git
synced 2025-05-23 07:40:53 +02:00
Updated examples
Signed-off-by: Kaloyan Nikolov <tzerber@gmail.com>
This commit is contained in:
parent
86ab9d769c
commit
2bfd475b13
17 changed files with 96 additions and 35 deletions
|
@ -1,4 +1,6 @@
|
|||
services:
|
||||
# Note: MariaDB is an external service. You can find more information about the configuration here:
|
||||
# https://docs.linuxserver.io/images/docker-mariadb/#environment-variables-e
|
||||
db:
|
||||
image: mariadb:10.11
|
||||
command: --transaction-isolation=READ-COMMITTED
|
||||
|
@ -12,6 +14,8 @@ services:
|
|||
env_file:
|
||||
- db.env
|
||||
|
||||
# Note: Redis is an external service. You can find more information about the configuration here:
|
||||
# https://redis.io/docs/latest/operate/oss_and_stack/install/install-stack/docker/#configuration
|
||||
redis:
|
||||
image: redis:alpine
|
||||
restart: always
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
services:
|
||||
# Note: MariaDB is an external service. You can find more information about the configuration here:
|
||||
# https://docs.linuxserver.io/images/docker-mariadb/#environment-variables-e
|
||||
db:
|
||||
image: mariadb:10.11
|
||||
command: --transaction-isolation=READ-COMMITTED
|
||||
|
@ -12,6 +14,8 @@ services:
|
|||
env_file:
|
||||
- db.env
|
||||
|
||||
# Note: Redis is an external service. You can find more information about the configuration here:
|
||||
# https://redis.io/docs/latest/operate/oss_and_stack/install/install-stack/docker/#configuration
|
||||
redis:
|
||||
image: redis:alpine
|
||||
restart: always
|
||||
|
@ -31,14 +35,17 @@ services:
|
|||
- db
|
||||
- redis
|
||||
|
||||
# Note: Nginx is an external service. You can find more information about the configuration here:
|
||||
# https://hub.docker.com/_/nginx/
|
||||
web:
|
||||
build: ./web
|
||||
image: nginx:alpine
|
||||
restart: always
|
||||
ports:
|
||||
- 127.0.0.1:8080:80
|
||||
volumes:
|
||||
- ./web/nginx.conf:/etc/nginx/nginx.conf:ro # https://docs.nextcloud.com/server/latest/admin_manual/installation/nginx.html
|
||||
# NOTE: The `volumes` included below should match those of the `app` container (unless you know what you're doing)
|
||||
- nextcloud:/var/www/html:z,ro
|
||||
# NOTE: The `volumes` included here should match those of the `app` container (unless you know what you're doing)
|
||||
depends_on:
|
||||
- app
|
||||
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
FROM nginx:alpine
|
||||
|
||||
COPY nginx.conf /etc/nginx/nginx.conf
|
Loading…
Add table
Add a link
Reference in a new issue