Skip to content

Instantly share code, notes, and snippets.

View stivenramireza's full-sized avatar

Stiven Ramírez Arango stivenramireza

  • tyba por Credicorp Capital
  • Medellín, Antioquia, Colombia
  • LinkedIn in/stivenramireza
View GitHub Profile
@Klerith
Klerith / programas.md
Created July 13, 2023 20:10
Programas para hacer diagramas entidad relación
@Klerith
Klerith / docker-compose.yml
Last active January 15, 2026 00:05
PostgreSQL + PgAdmin
version: '3'
services:
myDB:
image: postgres:15.3
container_name: my-database
restart: always
ports:
- 5432:5432
environment:
@Klerith
Klerith / instalaciones-database.md
Last active March 14, 2026 19:11
Instalaciones necesarias para el curso de base de datos
Postgresql_elephant svg

SQL de cero: Tu guía práctica con PostgreSQL

Instalaciones recomendadas

@Klerith
Klerith / instalaciones-nestjs.md
Last active March 11, 2026 12:46
Instalaciones recomendadas para el curso de Nest.js
@byk0t
byk0t / docker-compose.yml
Last active January 26, 2024 16:08
Docker compose for odoo:14 and PostgreSQL:13
version: '3'
services:
db:
image: postgres:13
volumes:
- db-data:/var/lib/postgresql/data/pgdata
ports:
- 5432:5432/tcp
environment:
- POSTGRES_PASSWORD=odoo