This repository has no description
lustre gleam
0

Configure Feed

Select the types of activity you want to include in your feed.

add postgres to the `docker-compose` file

author
kacaii.dev
date (Feb 10, 2026, 2:52 PM -0300) commit 20e4a1fc parent e6f637b4 change-id mkyurprk
+27
+1
.gitignore
··· 1 + .envrc
+16
docker-compose.yml
··· 1 + services: 2 + postgres: 3 + container_name: postgres 4 + image: docker.io/postgres:18-alpine 5 + restart: unless-stopped 6 + ports: 7 + - 5432:5432 8 + environment: 9 + - POSTGRES_USER 10 + - POSTGRES_PASSWORD 11 + - POSTGRES_DB 12 + healthcheck: 13 + test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER} -d ${POSTGRES_DB}"] 14 + interval: 5s 15 + timeout: 5s 16 + retries: 5
+10
justfile
··· 1 + default: 2 + just --list 3 + 4 + [group("db")] 5 + compose-up: 6 + podman-compose up -d 7 + 8 + [group("db")] 9 + compose-down: 10 + podman-compose down