Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
t3o
my.typo3.org
Commits
2a53cd4c
Commit
2a53cd4c
authored
Jun 20, 2018
by
Boris Schauer
Browse files
[TASK] Initial ddev settings for my.typo3.org
parent
6e664668
Pipeline
#4657
passed with stages
in 5 minutes and 42 seconds
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
.ddev/config.yaml
0 → 100644
View file @
2a53cd4c
APIVersion
:
v0.19.0
name
:
my.typo3.org
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
\ No newline at end of file
.ddev/docker-compose.yaml
0 → 100644
View file @
2a53cd4c
version
:
'
3'
#ddev-generated
services
:
db
:
container_name
:
ddev-${DDEV_SITENAME}-db
image
:
$DDEV_DBIMAGE
stop_grace_period
:
60s
volumes
:
-
"
${DDEV_IMPORTDIR}:/db"
-
"
${DDEV_DATADIR}:/var/lib/mysql"
-
"
.:/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
web
:
container_name
:
ddev-${DDEV_SITENAME}-web
image
:
$DDEV_WEBIMAGE
volumes
:
-
"
../:/var/www/html:cached"
-
"
.:/mnt/ddev_config"
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_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
.gitignore
View file @
2a53cd4c
...
...
@@ -13,3 +13,4 @@ html/typo3conf/PackageStates.php
html/typo3conf/l10n
html/typo3temp/
html/uploads/
/auth.json
auth.json.example
0 → 100644
View file @
2a53cd4c
{
"http-basic": {
"git-t3o.typo3.org": {
"username": "gitlabusername",
"password": "gitlabpassword"
}
}
}
Write
Preview
Supports
Markdown
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