feat: add container hashmap
This commit is contained in:
commit
bb1784f259
12 changed files with 1511 additions and 0 deletions
18
examples/compose/compose.yaml
Normal file
18
examples/compose/compose.yaml
Normal 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:
|
||||
Loading…
Add table
Add a link
Reference in a new issue