forked from LaconicNetwork/kompose
10 lines
199 B
YAML
10 lines
199 B
YAML
services:
|
|
app:
|
|
image: node:18-alpine
|
|
command: sh -c "yarn install && yarn run dev"
|
|
ports:
|
|
- 3000:3000
|
|
environment:
|
|
TOPICS: foo:1,status:2,bar:3
|
|
OTHER_ENV: example
|