mirror of
https://github.com/docker/awesome-compose.git
synced 2025-04-25 10:18:07 +02:00
19 lines
249 B
YAML
19 lines
249 B
YAML
version: '3'
|
|
services:
|
|
db:
|
|
build:
|
|
context: ./postgres
|
|
ports:
|
|
- "5432:5432"
|
|
app:
|
|
build:
|
|
context: ./nodejs
|
|
ports:
|
|
- "3000:3000"
|
|
depends_on:
|
|
- db
|
|
networks:
|
|
- backend
|
|
|
|
networks:
|
|
backend:
|