Yacht_Templates/postgres.json
2025-04-24 10:31:27 -05:00

44 lines
1.5 KiB
JSON

{
"type": 1,
"title": "PostgreSQL 17.4",
"name": "PostgreSQL 17.4",
"description": "Phpmyadmin is a free software tool written in PHP, intended to handle the administration of MySQL over the Web. phpMyAdmin supports a wide range of operations on MySQL and MariaDB.",
"logo": "",
"image": "postgres:17.4",
"note": "This is a PostgreSQL database server.",
"categories": [
"System Tools"
],
"platform": "linux",
"restart_policy": "unless-stopped",
"ports": [
"5432:5432/tcp"
],
"volumes": [
{
"container": "/var/lib/postgresql/data",
"bind": "!config/postgresql/config"
}
],
"env": [
{
"name": "POSTGRES_USER",
"label": "POSTGRES_USER",
"default": "postgresql",
"description": "The root PostgreSQL user. This user has superuser access to all databases."
},
{
"name": "POSTGRES_DB",
"label": "POSTGRES_DB",
"default": "postgresdb",
"description": "The name of the default database to create when the container is started for the first time."
},
{
"name": "POSTGRES_PASSWORD",
"label": "POSTGRES_PASSWORD",
"default": "CHANGE_ME_YOU_FOOL",
"description": "The password for the PostgreSQL user. This password is used to authenticate the user when connecting to the database."
}
]
}