| 12345678910111213141516171819202122232425262728293031 |
- version: '3.8'
- services:
- postgres:
- image: postgres:15-alpine
- restart: always
- environment:
- POSTGRES_USER: postgres
- POSTGRES_PASSWORD: postgres
- POSTGRES_DB: vtorio
- ports:
- - "5432:5432"
- volumes:
- - postgres_data:/var/lib/postgresql/data
- app:
- build: .
- restart: always
- ports:
- - "3000:3000"
- environment:
- DATABASE_URL: "postgresql://postgres:postgres@postgres:5432/vtorio?schema=public"
- ROOT_PATH: "/app"
- depends_on:
- - postgres
- volumes:
- - ./:/app
- - /app/node_modules
- volumes:
- postgres_data:
|