feat: add container hashmap

This commit is contained in:
Alexander Navarro 2025-06-25 16:14:35 -04:00
commit bb1784f259
12 changed files with 1511 additions and 0 deletions

View file

@ -0,0 +1,18 @@
name: epoch_postgres_example
services:
db:
image: postgres
restart: unless-stopped
volumes:
- db_data:/var/lib/postgresql/data
environment:
- POSTGRES_DB=example
- POSTGRES_PASSWORD=secret
labels:
- epoch.manage=true
- epoch.service.group=databases
volumes:
db_data: