Extend ddev config for ssh access

This commit is contained in:
Björn Fromme
2021-02-04 21:01:42 +01:00
parent 5543fbcb7a
commit 753dcc98b6
2 changed files with 8 additions and 1 deletions
+6
View File
@@ -19,6 +19,12 @@ provider: default
omit_containers: [dba]
use_dns_when_possible: true
timezone: Europe/Berlin
webimage_extra_packages: [ ssh ]
hooks:
post-start:
- exec: "sudo chmod 600 /home/fromme/.ssh/authorized_keys"
- exec: "sudo service ssh start"
# This config.yaml was created with ddev version v1.14.0
+2 -1
View File
@@ -4,6 +4,7 @@ services:
web:
environment:
- TYPO3_CONTEXT=Development
- PHP_IDE_CONFIG=serverName=${DDEV_SITENAME}.ddev.site
volumes:
- ../public/typo3conf/ext/ep_theme/Resources/Private/Assets:/var/www/html/public/typo3conf/ext/ep_theme/Resources/Private/Assets:consistent
ports:
- "9922:22"