mirror of
https://github.com/sern-handler/automata
synced 2026-06-22 15:52:21 +00:00
* refactor: initial monorepo * chore: remove accidentally commited repos * chore: remove accidentally commited repos * feat: more progress * feat: finally monorepo done * feat: move away from pocketbase * fix: seren's reviews and schema frontend login errors * fix: for some reason didn't remove await lol
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:
|
|
- 5432:5432 |