opentofu.org/docker-compose.yaml
Janos 80f7dbf0ff
Adding build container (#220)
This commit adds a build container to make it easier for people without
NodeJS/npm to run the website locally.

Signed-off-by: Janos Bonic <86970079+janosdebugs@users.noreply.github.com>
2023-11-29 14:44:06 +00:00

11 lines
191 B
YAML

version: '3.8'
services:
website:
build: .
volumes:
- source: ./
target: /work
type: bind
- /work/node_modules
ports:
- "3000:3000"