mirror of
https://github.com/draussenfunker/draussenfunker.github.io.git
synced 2025-12-31 08:29:17 +00:00
10 lines
217 B
YAML
10 lines
217 B
YAML
services:
|
|
dev:
|
|
image: "node:20"
|
|
user: "node"
|
|
working_dir: /home/node/app
|
|
volumes:
|
|
- ./:/home/node/app
|
|
ports:
|
|
- "8080:8080"
|
|
command: sh -c "yarn install && yarn build && yarn dev"
|