mirror of
https://github.com/gnosygnu/xowa.git
synced 2024-10-27 20:34:16 +00:00
Merge a136fd0a5a
into 2a4abd8f75
This commit is contained in:
commit
59b53fb656
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,2 +1,4 @@
|
|||||||
*.iml
|
*.iml
|
||||||
**/.idea/**
|
**/.idea/**
|
||||||
|
|
||||||
|
build
|
10
Dockerfile
Normal file
10
Dockerfile
Normal 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
9
docker-compose.yaml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
version: "3"
|
||||||
|
|
||||||
|
services:
|
||||||
|
wiki:
|
||||||
|
build: .
|
||||||
|
volumes:
|
||||||
|
- /h/DOCKER/wiki:/root/wiki
|
||||||
|
ports:
|
||||||
|
- "4040:8080"
|
Loading…
Reference in New Issue
Block a user