1
0
mirror of https://github.com/gnosygnu/xowa.git synced 2024-10-27 20:34:16 +00:00
This commit is contained in:
Simon Schnell 2022-02-25 23:34:36 +01:00 committed by GitHub
commit 59b53fb656
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 21 additions and 0 deletions

2
.gitignore vendored
View File

@ -1,2 +1,4 @@
*.iml *.iml
**/.idea/** **/.idea/**
build

10
Dockerfile Normal file
View File

@ -0,0 +1,10 @@
FROM java:8
WORKDIR /root
COPY build/bin bin
COPY res/user user
COPY build/xowa_dev.jar xowa_dev.jar
ENTRYPOINT java -jar xowa_dev.jar --app_mode http_server --http_server_port 8080

9
docker-compose.yaml Normal file
View File

@ -0,0 +1,9 @@
version: "3"
services:
wiki:
build: .
volumes:
- /h/DOCKER/wiki:/root/wiki
ports:
- "4040:8080"