PostgreSQL database container for the Cometa microservices ecosystem. Provides reliable data storage and is accessible only by the cometa-django-service. Designed for performance and secure data persistence.
More details can be seen at the Backend section on Cometa Rocks GitHubβ repoβ .
5432)cometa-django-service| Property | Value |
|---|---|
| DNS | cometa-postgres-service |
| Port | 5432 |
| Protocol | tcp |
| CPU | 2 cores |
| RAM | 2 GB |
| Storage | 4 GB |
| External Path | Internal Path |
|---|---|
./db_data | /var/lib/postgresql/data/ |
All external mounts should be located under the shared /cometadata directory for consistency across services.
The PostgreSQL container allows inbound connections only from:
cometa-django-servicedocker run -d \
--name cometa-postgres-service \
-p 5432:5432 \
-v $(pwd)/db_data:/var/lib/postgresql/data/ \
-e POSTGRES_USER=cometauser \
-e POSTGRES_PASSWORD=securepassword \
-e POSTGRES_DB=cometadb \
postgres:latest
Content type
Image
Digest
sha256:f2340a56cβ¦
Size
126.3 MB
Last updated
over 2 years ago
docker pull cometa/postgres