mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 19:27:52 +01:00
14 lines
209 B
YAML
14 lines
209 B
YAML
|
|
version: '3'
|
||
|
|
services:
|
||
|
|
db:
|
||
|
|
image: postgres
|
||
|
|
volumes:
|
||
|
|
- ./tmp/db:/var/lib/postgresql/data
|
||
|
|
web:
|
||
|
|
build: .
|
||
|
|
volumes:
|
||
|
|
- .:/app
|
||
|
|
ports:
|
||
|
|
- "3000:3000"
|
||
|
|
depends_on:
|
||
|
|
- db
|