mirror of https://github.com/requarks/wiki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
328 B
23 lines
328 B
6 years ago
|
# -- DEV DOCKER-COMPOSE --
|
||
|
# -- DO NOT USE IN PRODUCTION! --
|
||
|
|
||
|
version: "3"
|
||
|
services:
|
||
|
wiki:
|
||
|
build:
|
||
|
context: .
|
||
|
dockerfile: dev/docker-sqlite/Dockerfile
|
||
|
networks:
|
||
|
- wikinet
|
||
|
ports:
|
||
|
- "3000:3000"
|
||
|
volumes:
|
||
|
- .:/wiki
|
||
|
- /wiki/node_modules
|
||
|
|
||
|
networks:
|
||
|
wikinet:
|
||
|
|
||
|
volumes:
|
||
|
db-data:
|