mirror of
https://github.com/sern-handler/automata
synced 2026-06-27 18:22:15 +00:00
13 lines
270 B
YAML
13 lines
270 B
YAML
version: '3.8'
|
|
services:
|
|
db:
|
|
image: postgres
|
|
restart: always
|
|
environment:
|
|
POSTGRES_USER: development
|
|
POSTGRES_PASSWORD: development
|
|
POSTGRES_DB: automatadev
|
|
volumes:
|
|
- ./data:/var/lib/postgresql/data
|
|
ports:
|
|
- 5431:5432 |