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
60
Issues
60
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
a1df3bcc
Commit
a1df3bcc
authored
Jun 06, 2018
by
Thomas Löffler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update ddev to 0.19.0 and set repositoryDir for ddev env
parent
b5711a0b
Pipeline
#4538
passed with stages
in 10 minutes and 9 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
62 additions
and
7 deletions
+62
-7
.ddev/config.yaml
.ddev/config.yaml
+59
-7
.ddev/docker-compose.yaml
.ddev/docker-compose.yaml
+1
-0
html/typo3conf/AdditionalConfiguration.ddev.php
html/typo3conf/AdditionalConfiguration.ddev.php
+2
-0
No files found.
.ddev/config.yaml
View file @
a1df3bcc
APIVersion
:
v0.1
8
.0
APIVersion
:
v0.1
9
.0
name
:
ter
type
:
typo3
docroot
:
html
php_version
:
"
7.0"
router_http_port
:
"
80"
router_https_port
:
"
443"
xdebug_enabled
:
false
additional_hostnames
:
[]
provider
:
default
hooks
:
post-start
:
-
exec
:
"
composer
install
-d
/var/www/html"
-
exec
:
"
npm
--prefix
typo3conf/ext/t3olayout/Build
install"
-
exec
:
"
npm
--prefix
typo3conf/ext/t3olayout/Build
run-script
build"
-
exec
:
"
../bin/typo3cms
install:generatepackagestates"
-
exec
:
"
../bin/typo3cms
install:extensionsetupifpossible"
-
exec
:
"
cp
typo3conf/AdditionalConfiguration.ddev.php
typo3conf/AdditionalConfiguration.php"
-
exec
:
composer install -d /var/www/html
-
exec
:
npm --prefix typo3conf/ext/t3olayout/Build install
-
exec
:
npm --prefix typo3conf/ext/t3olayout/Build run-script build
-
exec
:
../bin/typo3cms install:generatepackagestates
-
exec
:
../bin/typo3cms install:extensionsetupifpossible
-
exec
:
cp typo3conf/AdditionalConfiguration.ddev.php typo3conf/AdditionalConfiguration.php
# This config.yaml was created with ddev version v0.19.0
# webimage: drud/nginx-php-fpm-local:v0.19.0
# dbimage: drud/mariadb-local:v0.19.0
# dbaimage: drud/phpmyadmin:v0.19.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'.
# Key features of ddev's config.yaml:
# name: <projectname> # Name of the project, automatically provides
# http://projectname.ddev.local and https://projectname.ddev.local
# type: <projecttype> # drupal6/7/8, backdrop, typo3, wordpress, php
# 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"
# 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,
# so this can break upgrades.
# webimage: <docker_image> # nginx/php docker image.
# dbimage: <docker_image> # mariadb docker image.
# dbaimage: <docker_image>
# router_http_port: <port> # Port to be used for http (defaults to port 80)
# 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"
#additional_hostnames:
# - somename
# - someothername
# would provide http and https URLs for "somename.ddev.local"
# and "someothername.ddev.local".
# provider: default # Currently either "default" or "pantheon"
#
# Many ddev commands can be extended to run tasks after the ddev command is
# executed.
# See https://ddev.readthedocs.io/en/latest/users/extending-commands/ for more
# information on the commands that can be extended and the tasks you can define
# for them. Example:
#hooks:
# post-start:
# - exec: "composer install -d /var/www/html"
\ No newline at end of file
.ddev/docker-compose.yaml
View file @
a1df3bcc
...
...
@@ -64,6 +64,7 @@ services:
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
...
...
html/typo3conf/AdditionalConfiguration.ddev.php
View file @
a1df3bcc
...
...
@@ -20,3 +20,5 @@ $GLOBALS['TYPO3_CONF_VARS']['DB']['Connections']['Default']['password'] = 'db';
$GLOBALS
[
'TYPO3_CONF_VARS'
][
'DB'
][
'Connections'
][
'Default'
][
'host'
]
=
'db'
;
$GLOBALS
[
'TYPO3_CONF_VARS'
][
'DB'
][
'Connections'
][
'Default'
][
'port'
]
=
'3306'
;
$GLOBALS
[
'TYPO3_CONF_VARS'
][
'BE'
][
'installToolPassword'
]
=
'$P$CZqeoYBTHC0kXKny4tpTvBSzzV5wVY0'
;
/* joh316 */
$GLOBALS
[
'TYPO3_CONF_VARS'
][
'EXT'
][
'extConf'
][
'ter'
]
=
serialize
([
'repositoryDir'
=>
'/var/www/html/html/fileadmin/ter/'
]);
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