Files
templates/blueprints/autobase/docker-compose.yml
Vitaliy Kukharik 3395913afb Update Autobase to version 2.5 (#647)
* Update Autobase to version 2.5

Bump the autobase-console Docker image from version 2.2.0 to 2.5.2 in docker-compose.yml to use the latest features and fixes.

* Update docker-compose.yml

* Update docker-compose.yml

* Update meta.json

* Update Autobase description in meta.json

Revised the Autobase package description to clarify it as a self-hosted DBaaS alternative to cloud-managed databases.
2026-01-28 00:46:57 -06:00

18 lines
442 B
YAML

services:
autobase-console:
image: autobase/console:2.5.2
restart: unless-stopped
ports:
- "80"
- "8080"
environment:
- PG_CONSOLE_API_URL=${PG_CONSOLE_API_URL}
- PG_CONSOLE_AUTHORIZATION_TOKEN=${PG_CONSOLE_AUTHORIZATION_TOKEN}
volumes:
- console_postgres:/var/lib/postgresql
- /var/run/docker.sock:/var/run/docker.sock
- /tmp/ansible:/tmp/ansible
volumes:
console_postgres: