1
0
mirror of https://github.com/sismics/docs.git synced 2025-12-18 12:11:40 +00:00

Dockerization + Fix for Tesseract 3.03

This commit is contained in:
Walter
2015-03-11 00:35:42 +01:00
parent 18cedaef2c
commit 192c2030d3
8 changed files with 41 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
FROM busybox
VOLUME ["/var/docs"]
ADD data /var/docs/
RUN chown -R 1001:1001 /var/docs
CMD ["/bin/sh"]

View File

@@ -0,0 +1,3 @@
#!/bin/sh
docker build -t sismics/docs_data .

3
docs-docker-data/run.sh Normal file
View File

@@ -0,0 +1,3 @@
#!/bin/sh
docker rm -f sismics_docs_data
docker run --name sismics_docs_data sismics/docs_data