mirror of
https://github.com/morten-olsen/morten-olsen.github.io.git
synced 2026-02-07 17:36:29 +01:00
12 lines
182 B
YAML
12 lines
182 B
YAML
version: '3'
|
|
services:
|
|
dev:
|
|
build:
|
|
context: ./docker
|
|
working_dir: /app
|
|
volumes:
|
|
- ./:/app
|
|
ports:
|
|
- 4321:4321
|
|
command: [ pnpm, dev, '--host' ]
|