mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-08 23:45:24 +02:00
* 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.
18 lines
442 B
YAML
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:
|