12 lines
164 B
YAML
12 lines
164 B
YAML
version: '3.8'
|
|
services:
|
|
app:
|
|
image: node:18
|
|
command: echo "replace with actual service"
|
|
|
|
postgres:
|
|
image: postgres:15
|
|
|
|
redis:
|
|
image: redis:7
|