mirror of
https://github.com/docker/awesome-compose.git
synced 2025-04-25 18:28:07 +02:00
20 lines
249 B
YAML
20 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:
|