Stanislav Zhuk
Stanislav Zhuk
TYPO3: ``` Updating /home/runner/tmp/ddevtest/TestPkgContao914301743/.env.local with map[DATABASE_URL:***db/db MAILER_DSN:smtp://127.0.0.1:1025] ... http status code for 'http://127.0.0.1:33194' was 301, not 200 ``` https://github.com/ddev/ddev/actions/runs/7569757491/job/20613740279?pr=5672#step:17:7053 I see `TestPkgContao` here, looks like it's related. --- xdebug: ```...
Rebased to resolve conflicts.
Tested quickstart manually: ``` curl -I https://127.0.0.1 HTTP/1.1 301 Moved Permanently Date: Thu, 29 Feb 2024 20:30:42 GMT Server: Apache/2.4.57 (Debian) Referrer-Policy: no-referrer-when-downgrade, strict-origin-when-cross-origin Permissions-Policy: interest-cohort=() Contao-Cache: miss Location: http://127.0.0.1/...
Rebased to resolve conflicts (without running tests).
Workaround using the `sqlite3` package from Debian 13 Trixie: ``` $ cat .ddev/web-build/Dockerfile.sqlite ARG TARGETPLATFORM RUN SQLITE_VERSION=3.45.1 && \ mkdir -p /tmp/sqlite3 && \ wget -O /tmp/sqlite3/sqlite3.deb https://ftp.debian.org/debian/pool/main/s/sqlite3/sqlite3_${SQLITE_VERSION}-1_${TARGETPLATFORM##linux/}.deb && \...
> to properly uprade the version of sqlite in the addons dockerfile it has to reside somewhere else than in a temp directory? No, it is installed properly where it...
> I think sqlite3 depends on libsqlite3, and probably phpX.X-sqlite3 depend on these as well. I install `libsqlite3-0` in my `Dockerfile`, otherwise it wouldn't work at all. And I compared...
@timkelty, try this custom `Dockerfile.postgresql-client` adapted from https://www.postgresql.org/download/linux/debian/ `POSTGRESQL_VERSION=16 && echo "RUN apt update && apt install -y postgresql-common && echo | /usr/share/postgresql-common/pgdg/apt.postgresql.org.sh && apt install -y postgresql-client-$POSTGRESQL_VERSION && apt...
Hi @n8-dev, In fact, we recommend using [`nodejs_version`](https://ddev.readthedocs.io/en/stable/users/configuration/config/#nodejs_version), because with it you can choose [any version](https://www.npmjs.com/package/n#specifying-nodejs-versions) you want: ```yaml # use the latest 20 version nodejs_version: v20 # use the...
Thanks @GuySartorelli, I get the idea. There is `n install auto`, that looks for `.n-node-version`, `.node-version`, `.nvmrc`, `engine` label in `package.json`. https://www.npmjs.com/package/n#specifying-nodejs-versions Unfortunately we cannot use `n install auto` because...