Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions containers/ddev-dbserver/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -172,3 +172,4 @@ EXPOSE 3306
# The following line overrides any cmd entry
CMD []
HEALTHCHECK --interval=1s --retries=30 --timeout=120s CMD ["/healthcheck.sh"]
# ddev-release-marker: v1.107.0-rc1
1 change: 1 addition & 0 deletions containers/ddev-ssh-agent/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,4 @@ VOLUME ${SOCKET_DIR}
ENTRYPOINT ["/entry.sh"]

CMD ["ssh-agent"]
# ddev-release-marker: v1.107.0-rc1
1 change: 1 addition & 0 deletions containers/ddev-traefik-router/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ RUN chmod ugo+rx /usr/local/bin/monitor-traefik-stderr.sh /usr/local/bin/docker-
RUN mkdir -p /etc/traefik && ln -s /mnt/ddev-global-cache/traefik/.static_config.yaml /etc/traefik/traefik.yaml
HEALTHCHECK --interval=1s --timeout=120s --retries=1 --start-period=120s CMD /healthcheck.sh
ENTRYPOINT ["/usr/local/bin/docker-entrypoint.sh", "/usr/local/bin/traefik"]
# ddev-release-marker: v1.107.0-rc1
1 change: 1 addition & 0 deletions containers/ddev-webserver/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -663,3 +663,4 @@ COPY --from=ddev-webserver-prod-base / /
HEALTHCHECK --interval=1s --retries=120 --timeout=120s --start-period=120s CMD ["/healthcheck.sh"]
CMD ["/start.sh"]
### -------------------------END ddev-webserver-prod------------------------------
# ddev-release-marker: v1.107.0-rc1
1 change: 1 addition & 0 deletions containers/ddev-xhgui/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ RUN echo 'memory_limit=512M' >> $PHP_INI_DIR/conf.d/99-memory-limit.ini
ADD healthcheck.sh /healthcheck.sh
RUN chmod ugo+x /healthcheck.sh
HEALTHCHECK --interval=1s --retries=5 --timeout=120s CMD ["/healthcheck.sh"]
# ddev-release-marker: v1.107.0-rc1
20 changes: 10 additions & 10 deletions pkg/versionconstants/versionconstants.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,46 +49,46 @@ func IsUnreleasedDdevVersion(version string) bool {
var WebImg = "ddev/ddev-webserver"

// WebTag defines the default web image tag
var WebTag = "c202e92108" // 20260814_rfay_docker_update_phase_2-c202e92108
var WebTag = "ee4ce07ef6" // 20260828_ddevtest_v1.107.0-rc1-ee4ce07ef6

// WebTagBranch is the branch WebTag's content was built from.
var WebTagBranch = "20260814_rfay_docker_update_phase_2"
var WebTagBranch = "v1.107.0-rc1"

// DBImg defines the default db image used for applications.
var DBImg = "ddev/ddev-dbserver"

// BaseDBTag is the main tag, DBTag is constructed from it
var BaseDBTag = "f57cd53429" // 20260814_rfay_seed_snapshot_reset_database-f57cd53429
var BaseDBTag = "6b39c533c2" // 20260828_ddevtest_v1.107.0-rc1-6b39c533c2

// BaseDBTagBranch is the branch BaseDBTag's content was built from.
var BaseDBTagBranch = "20260814_rfay_seed_snapshot_reset_database"
var BaseDBTagBranch = "v1.107.0-rc1"

// TraefikRouterImage is image for router
var TraefikRouterImage = "ddev/ddev-traefik-router"

// TraefikRouterTag is traefik router tag
var TraefikRouterTag = "bffcda31c5" // 20260814_rfay_docker_update_phase_2-bffcda31c5
var TraefikRouterTag = "83339f49ed" // 20260828_ddevtest_v1.107.0-rc1-83339f49ed

// TraefikRouterTagBranch is the branch TraefikRouterTag's content was built from.
var TraefikRouterTagBranch = "20260814_rfay_docker_update_phase_2"
var TraefikRouterTagBranch = "v1.107.0-rc1"

// SSHAuthImage is image for agent
var SSHAuthImage = "ddev/ddev-ssh-agent"

// SSHAuthTag is ssh-agent auth tag
var SSHAuthTag = "bb5e9f0003" // 20260814_rfay_docker_update_phase_2-bb5e9f0003
var SSHAuthTag = "c884cf779b" // 20260828_ddevtest_v1.107.0-rc1-c884cf779b

// SSHAuthTagBranch is the branch SSHAuthTag's content was built from.
var SSHAuthTagBranch = "20260814_rfay_docker_update_phase_2"
var SSHAuthTagBranch = "v1.107.0-rc1"

// XhguiImage is image for xhgui
var XhguiImage = "ddev/ddev-xhgui"

// XhguiTag is xhgui tag
var XhguiTag = "8757c1e92a" // 20260814_rfay_docker_update_phase_2-8757c1e92a
var XhguiTag = "97a58f7ad7" // 20260828_ddevtest_v1.107.0-rc1-97a58f7ad7

// XhguiTagBranch is the branch XhguiTag's content was built from.
var XhguiTagBranch = "20260814_rfay_docker_update_phase_2"
var XhguiTagBranch = "v1.107.0-rc1"

// UtilitiesImage is used in bash scripts
var UtilitiesImage = "ddev/ddev-utilities:latest"
Expand Down
Loading