24 lines
431 B
Text
24 lines
431 B
Text
|
# Version of software components
|
||
|
MEMCACHED_VERSION=1.6
|
||
|
NGINX_VERSION=1.19
|
||
|
PHP_VERSION=8.3
|
||
|
POSTGRESQL_VERSION=17
|
||
|
TRAEFIX_VERSION=2.4
|
||
|
|
||
|
# Port to bind on the host
|
||
|
HOST_PORT=80
|
||
|
# UID and GID to run php-fpm as
|
||
|
UID=1000
|
||
|
GID=1000
|
||
|
# PostgreSQL superuser password
|
||
|
PG_PASSWORD=...
|
||
|
# Database name
|
||
|
DB_NAME=tasks
|
||
|
# Database access username
|
||
|
DB_USER=tasks
|
||
|
# Database access password
|
||
|
DB_PASSWORD=...
|
||
|
|
||
|
# Base URL, if autodetection fails
|
||
|
BASE_URL=
|