Skip to content

Instantly share code, notes, and snippets.

View Wil-JsDev's full-sized avatar
🎯
Focusing

Wilmer De La Cruz Wil-JsDev

🎯
Focusing
View GitHub Profile
@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:
@jd-apprentice
jd-apprentice / guide.md
Last active January 30, 2025 04:36
# Dockerize a database + DBeaver

How to build and run our containers.

First create a .env file with the following structure (names are like this because i'm using postgres)

POSTGRES_CONTAINER_NAME=
POSTGRES_CONTAINER_IMAGE_NAME=

postgres_USER=
postgres_PASS=