mirror of
https://github.com/AustinKelsay/plebdevs.git
synced 2025-04-19 10:51:20 +00:00
31 lines
462 B
YAML
31 lines
462 B
YAML
version: "3"
|
|
services:
|
|
db:
|
|
container_name: plebdevs-db
|
|
image: postgres:13.2
|
|
restart: always
|
|
expose:
|
|
- "5432"
|
|
ports:
|
|
- "5432:5432"
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- postgres_data:/var/lib/postgresql/data
|
|
app:
|
|
container_name: plebdevs
|
|
build: .
|
|
depends_on:
|
|
- db
|
|
env_file:
|
|
- .env
|
|
ports:
|
|
- "3000:3000"
|
|
volumes:
|
|
- .:/app
|
|
links:
|
|
- db
|
|
|
|
volumes:
|
|
postgres_data:
|