-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcompose.override.yml
More file actions
31 lines (30 loc) · 976 Bytes
/
compose.override.yml
File metadata and controls
31 lines (30 loc) · 976 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
services:
nextcloud:
build:
context: .
target: nextcloud_dev
volumes:
- ./docker/nextcloud/conf.d/nextcloud.dev.ini:/usr/local/etc/php/conf.d/nextcloud.dev.ini:ro
- ./docker/nextcloud/entrypoint.sh:/nextcloud-entrypoint.sh:ro
depends_on:
- mailer
environment:
- XDEBUG_MODE=${XDEBUG_MODE:-develop}
- XDEBUG_CONFIG=
cli_color=1
client_host=${XDEBUG_HOST:-host.docker.internal}
client_port=${XDEBUG_PORT:-9003}
log=/var/www/html/data/xdebug.log
log_level=${XDEBUG_LOG_LEVEL:-7}
idekey=${XDEBUG_IDEKEY:-xdebug}
- XDEBUG_SESSION=${XDEBUG_IDEKEY:-xdebug}
extra_hosts:
# Ensure that host.docker.internal is correctly defined on Linux
- host.docker.internal:host-gateway
mailer:
image: axllent/mailpit
ports:
- "127.0.0.1:${MAILER_PORT:-8025}:8025"
environment:
MP_SMTP_AUTH_ACCEPT_ANY: 1
MP_SMTP_AUTH_ALLOW_INSECURE: 1