mirror of
https://github.com/Metastem/wikiless
synced 2024-12-06 19:16:58 +01:00
bfc1e47533
New docker-compose.dev.yml can be used as override for development
13 lines
259 B
YAML
13 lines
259 B
YAML
version: "3.9"
|
|
services:
|
|
web:
|
|
image: node:16-alpine
|
|
volumes:
|
|
- .:/wikiless
|
|
- ./config.js.template:/wikiless/config.js
|
|
- node_modules:/wikiless/node_modules
|
|
working_dir: /wikiless
|
|
command: npm start
|
|
volumes:
|
|
node_modules:
|