13 lines
536 B
Bash
13 lines
536 B
Bash
|
|
# CI/runtime version source of truth for scripts and docker build args.
|
||
|
|
# shellcheck disable=SC2034
|
||
|
|
PLAYWRIGHT_VERSION=1.61.1
|
||
|
|
PLAYWRIGHT_DISTRO=jammy
|
||
|
|
PLAYWRIGHT_IMAGE_TAG=v1.61.1-jammy
|
||
|
|
PLAYWRIGHT_IMAGE=mcr.microsoft.com/playwright:${PLAYWRIGHT_IMAGE_TAG}
|
||
|
|
PLAYWRIGHT_MIRROR_IMAGE=darkhelm.org/playwright-browsers:${PLAYWRIGHT_IMAGE_TAG}
|
||
|
|
|
||
|
|
POSTGRES_IMAGE_TAG=16-alpine
|
||
|
|
POSTGRES_MIRROR_IMAGE=darkhelm.org/postgres:${POSTGRES_IMAGE_TAG}
|
||
|
|
POSTGRES_UPSTREAM_IMAGE=docker.io/library/postgres:${POSTGRES_IMAGE_TAG}
|
||
|
|
UBUNTU_CICD_BASE_VERSION=26.04
|