mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 11:17:49 +01:00
16 lines
243 B
YAML
16 lines
243 B
YAML
version: '3'
|
|
services:
|
|
db:
|
|
image: postgres
|
|
volumes:
|
|
- ./tmp/db:/var/lib/postgresql/data
|
|
web:
|
|
build: .
|
|
environment:
|
|
- UPDATE=0
|
|
volumes:
|
|
- .:/app
|
|
ports:
|
|
- "3000:3000"
|
|
depends_on:
|
|
- db |