mautic/.gitpod.Dockerfile
Randy Fay 4e211eb327
Update gitpod startup (#14166)
* Commit ddev-phpmyadmin

* Install current version of DDEV

* No router bind needed, no router. Drush not used

* no sudo needed in apt install

* sudos are needed in Dockerfile

* Update .ddev/config.yaml to current usage

* Remove the version tag from docker-compose files

* Remove version from redis-commander

* gitpod setup can do norouter setup

* remove docker-compose.phpmyadmin_norouter.yaml

* gitignore docker-compose.phpmyadmin_norouter.yaml

* gitignore phpmyadmin_norouter so we can create it in gitpod.yml

* @stasadev suggestions from code review

Co-authored-by: Stanislav Zhuk <stasadev@gmail.com>

* Update to latest ddev/phpmyadmin to make ddev phpmyadmin work

* Fix scaffolding problem with .gitignore

---------

Co-authored-by: Stanislav Zhuk <stasadev@gmail.com>
Co-authored-by: Ruth Cheesley <ruth@ruthcheesley.co.uk>
2024-10-11 16:55:33 +02:00

12 lines
560 B
Docker

FROM gitpod/workspace-full
SHELL ["/bin/bash", "-c"]
RUN sudo apt-get update && sudo apt-get install -y curl
RUN sudo install -m 0755 -d /etc/apt/keyrings
RUN curl -fsSL https://pkg.ddev.com/apt/gpg.key | gpg --dearmor | sudo tee /etc/apt/keyrings/ddev.gpg > /dev/null
RUN sudo chmod a+r /etc/apt/keyrings/ddev.gpg
RUN echo "deb [signed-by=/etc/apt/keyrings/ddev.gpg] https://pkg.ddev.com/apt/ * *" | sudo tee /etc/apt/sources.list.d/ddev.list >/dev/null
# Update package information and install DDEV
RUN sudo apt-get update && sudo apt-get install -y ddev