Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
services
t3o sites
typo3.org
typo3.org
Commits
486870c3
Commit
486870c3
authored
Oct 31, 2018
by
Thomas Löffler
Browse files
Remove docker-compose.yaml from Git
parent
2d307162
Pipeline
#5433
passed with stages
in 6 minutes and 24 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
.ddev/.gitignore
View file @
486870c3
solr/mycores/*
docker-compose.yaml
.ddev/docker-compose.yaml
deleted
100644 → 0
View file @
2d307162
version
:
'
3.6'
#ddev-generated
services
:
db
:
container_name
:
ddev-${DDEV_SITENAME}-db
image
:
$DDEV_DBIMAGE
stop_grace_period
:
60s
volumes
:
-
type
:
"
volume"
source
:
mariadb-database
target
:
"
/var/lib/mysql"
volume
:
nocopy
:
true
-
type
:
"
bind"
source
:
"
${DDEV_IMPORTDIR}"
target
:
"
/db"
-
type
:
"
bind"
source
:
"
."
target
:
"
/mnt/ddev_config"
restart
:
"
no"
user
:
"
$DDEV_UID:$DDEV_GID"
ports
:
-
"
3306"
labels
:
com.ddev.site-name
:
${DDEV_SITENAME}
com.ddev.platform
:
ddev
com.ddev.app-type
:
typo3
com.ddev.approot
:
$DDEV_APPROOT
com.ddev.app-url
:
$DDEV_URL
environment
:
-
COLUMNS=$COLUMNS
-
LINES=$LINES
command
:
"
$DDEV_MARIADB_LOCAL_COMMAND"
web
:
container_name
:
ddev-${DDEV_SITENAME}-web
image
:
$DDEV_WEBIMAGE
volumes
:
-
"
../:/var/www/html:cached"
-
"
.:/mnt/ddev_config:ro"
restart
:
"
no"
user
:
"
$DDEV_UID:$DDEV_GID"
depends_on
:
-
db
links
:
-
db:db
# ports is list of exposed *container* ports
ports
:
-
"
80"
-
"
8025"
working_dir
:
/var/www/html/${DDEV_DOCROOT}
environment
:
-
DDEV_URL=$DDEV_URL
-
DOCROOT=$DDEV_DOCROOT
-
DDEV_PHP_VERSION=$DDEV_PHP_VERSION
-
DDEV_WEBSERVER_TYPE=$DDEV_WEBSERVER_TYPE
-
DDEV_PROJECT_TYPE=$DDEV_PROJECT_TYPE
-
DDEV_ROUTER_HTTP_PORT=$DDEV_ROUTER_HTTP_PORT
-
DDEV_ROUTER_HTTPS_PORT=$DDEV_ROUTER_HTTPS_PORT
-
DDEV_XDEBUG_ENABLED=$DDEV_XDEBUG_ENABLED
-
DEPLOY_NAME=local
-
VIRTUAL_HOST=$DDEV_HOSTNAME
-
COLUMNS=$COLUMNS
-
LINES=$LINES
# HTTP_EXPOSE allows for ports accepting HTTP traffic to be accessible from <site>.ddev.local:<port>
# To expose a container port to a different host port, define the port as hostPort:containerPort
-
HTTP_EXPOSE=${DDEV_ROUTER_HTTP_PORT}:80,8025
# You can optionally expose an HTTPS port option for any ports defined in HTTP_EXPOSE.
# To expose an HTTPS port, define the port as securePort:containerPort.
-
HTTPS_EXPOSE=${DDEV_ROUTER_HTTPS_PORT}:80
labels
:
com.ddev.site-name
:
${DDEV_SITENAME}
com.ddev.platform
:
ddev
com.ddev.app-type
:
typo3
com.ddev.approot
:
$DDEV_APPROOT
com.ddev.app-url
:
$DDEV_URL
extra_hosts
:
[
"
unneeded:127.0.0.1"
]
dba
:
container_name
:
ddev-${DDEV_SITENAME}-dba
image
:
$DDEV_DBAIMAGE
restart
:
"
no"
labels
:
com.ddev.site-name
:
${DDEV_SITENAME}
com.ddev.platform
:
ddev
com.ddev.app-type
:
typo3
com.ddev.approot
:
$DDEV_APPROOT
com.ddev.app-url
:
$DDEV_URL
depends_on
:
-
db
links
:
-
db:db
ports
:
-
"
80"
environment
:
-
PMA_USER=db
-
PMA_PASSWORD=db
-
VIRTUAL_HOST=$DDEV_HOSTNAME
# HTTP_EXPOSE allows for ports accepting HTTP traffic to be accessible from <site>.ddev.local:<port>
-
HTTP_EXPOSE=8036
networks
:
default
:
external
:
name
:
ddev_default
volumes
:
mariadb-database
:
name
:
"
${DDEV_SITENAME}-mariadb"
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment