Skip to content

Instantly share code, notes, and snippets.

View Ruttmann's full-sized avatar
🤘

Marlon Erich Ruttmann Ruttmann

🤘
  • Blumenau, SC, Brazil
  • 02:37 (UTC -03:00)
View GitHub Profile
@Ruttmann
Ruttmann / compose.yml
Created April 13, 2025 16:26
Docker compose: postgresql with pgadmin panel
services:
database:
image: postgres
container_name: saas_db
restart: unless-stopped
environment:
POSTGRES_USER: postgresusr
POSTGRES_PASSWORD: postgres
ports:
- 5432:5432