mirror of
https://github.com/Metastem/wikiless
synced 2024-12-06 19:16:58 +01:00
19 lines
344 B
YAML
19 lines
344 B
YAML
version: "3.9"
|
|
services:
|
|
web:
|
|
image: node:16-alpine
|
|
environment:
|
|
REDIS_HOST: redis
|
|
volumes:
|
|
- .:/app
|
|
- ./config.js.template:/app/config.js
|
|
- node_modules:/app/node_modules
|
|
working_dir: /app
|
|
command: npm start
|
|
ports:
|
|
- 8080:8080
|
|
redis:
|
|
image: "redis:alpine"
|
|
volumes:
|
|
node_modules:
|