mirror of
https://gh.wpcy.net/https://github.com/mautic/mautic.git
synced 2026-04-24 05:32:00 +08:00
* 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>
12 lines
560 B
Docker
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
|