Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
E
extensions.typo3.org
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
59
Issues
59
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
8
Merge Requests
8
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Test Cases
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
services
T
t3o sites
extensions.typo3.org
extensions.typo3.org
Commits
1c6bbc43
Commit
1c6bbc43
authored
Oct 01, 2019
by
Thomas Löffler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update ddev to 1.10.2
parent
355be669
Pipeline
#7630
passed with stages
in 2 minutes and 54 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
30 additions
and
15 deletions
+30
-15
.ddev/.gitignore
.ddev/.gitignore
+9
-0
.ddev/config.yaml
.ddev/config.yaml
+20
-12
.ddev/docker-compose.environment.yaml
.ddev/docker-compose.environment.yaml
+1
-3
No files found.
.ddev/.gitignore
View file @
1c6bbc43
#ddev-generated: Automatically generated ddev .gitignore.
# You can remove the above line if you want to edit and maintain this file yourself.
/commands/*/*.example
/commands/*/README.txt
/commands/db/mysql
/homeadditions/*.example
/homeadditions/README.txt
/import.yaml
/docker-compose.yaml
/db_snapshots
...
...
@@ -8,6 +13,10 @@
/import-db
/.bgsync*
/config.*.y*ml
/.webimageBuild
/.dbimageBuild
/.bgsyncimageBuild
/.sshimageBuild
/.webimageExtra
/.dbimageExtra
/*-build/Dockerfile.example
.ddev/config.yaml
View file @
1c6bbc43
APIVersion
:
v1.
9.1
APIVersion
:
v1.
10.2
name
:
ter
type
:
typo3
docroot
:
public
...
...
@@ -25,11 +25,11 @@ use_dns_when_possible: true
timezone
:
Europe/Berlin
# This config.yaml was created with ddev version v1.
9.1
# webimage: drud/ddev-webserver:v1.
9.0
# dbimage: drud/ddev-dbserver:v1.
9
.0-10.2
# dbaimage: drud/phpmyadmin:v1.
9
.0
# bgsyncimage: drud/ddev-bgsync:v1.
9
.0
# This config.yaml was created with ddev version v1.
10.2
# webimage: drud/ddev-webserver:v1.
10.2
# dbimage: drud/ddev-dbserver:v1.
10
.0-10.2
# dbaimage: drud/phpmyadmin:v1.
10
.0
# bgsyncimage: drud/ddev-bgsync:v1.
10
.0
# However we do not recommend explicitly wiring these images into the
# config.yaml as they may break future versions of ddev.
# You can update this config.yaml using 'ddev config'.
...
...
@@ -43,7 +43,7 @@ timezone: Europe/Berlin
# docroot: <relative_path> # Relative path to the directory containing index.php.
# php_version: "7.
1
" # PHP version to use, "5.6", "7.0", "7.1", "7.2", "7.3"
# php_version: "7.
2
" # PHP version to use, "5.6", "7.0", "7.1", "7.2", "7.3"
# You can explicitly specify the webimage, dbimage, dbaimage lines but this
# is not recommended, as the images are often closely tied to ddev's' behavior,
...
...
@@ -58,9 +58,18 @@ timezone: Europe/Berlin
# router_https_port: <port> # Port for https (defaults to 443)
# xdebug_enabled: false # Set to true to enable xdebug and "ddev start" or "ddev restart"
# Note that for most people the commands
# "ddev exec enable_xdebug" and "ddev exec disable_xdebug" work better,
# as leaving xdebug enabled all the time is a big performance hit.
# webserver_type: nginx-fpm # Can be set to apache-fpm or apache-cgi as well
# timezone: Europe/Berlin
# This is the timezone used in the containers and by PHP;
# it can be set to any valid timezone,
# see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
# For example Europe/Dublin or MST7MDT
# additional_hostnames:
# - somename
# - someothername
...
...
@@ -121,11 +130,9 @@ timezone: Europe/Berlin
# webimage_extra_packages: [php-yaml, php7.3-ldap]
# Extra Debian packages that are needed in the webimage can be added here
# This is ignored if a free-form .ddev/web-build/Dockerfile is provided
# dbimage_extra_packages: [telnet,netcat]
# Extra Debian packages that are needed in the dbimage can be added here
# This is ignored if a free-form .ddev/db-build/Dockerfile is provided
# use_dns_when_possible: true
# If the host has internet access and the domain configured can
...
...
@@ -136,9 +143,10 @@ timezone: Europe/Berlin
# project_tld: ddev.site
# The top-level domain used for project URLs
# The default "ddev.site" allows DNS lookup via a wildcard
# For backward compatibility this can be changed to "ddev.local"
# If you prefer you can change this to "ddev.local" to preserve
# pre-v1.9 behavior.
# ngrok_args: --subdomain mysite --auth
"user:pass"
# ngrok_args: --subdomain mysite --auth
username:pass
# Provide extra flags to the "ngrok http" command, see
# https://ngrok.com/docs#http or run "ngrok http -h"
...
...
@@ -152,4 +160,4 @@ timezone: Europe/Berlin
# for them. Example:
#hooks:
# post-start:
# - exec: composer install -d /var/www/html
\ No newline at end of file
# - exec: composer install -d /var/www/html
.ddev/docker-compose.environment.yaml
View file @
1c6bbc43
...
...
@@ -3,6 +3,4 @@ version: '3.6'
services
:
web
:
environment
:
-
TYPO3_CONTEXT=Development
-
PHP_IDE_CONFIG="serverName=ter.ddev.local"
-
DEBIAN_FRONTEND=noninteractive
\ No newline at end of file
-
TYPO3_CONTEXT=Development
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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