Compare commits

..

No commits in common. "feature/dockerize" and "master" have entirely different histories.

10 changed files with 1 additions and 23 deletions

View File

@ -1,9 +0,0 @@
FROM python:3
ADD app /app
RUN python3 -m pip install --upgrade pip
RUN python3 -m pip install --requirement /app/requirements.txt
WORKDIR /app
EXPOSE 5000/TCP
CMD [ "python3", "server.py" ]

View File

@ -1,4 +1,4 @@
imgdir = "/images"
imgdir = "."
recursive = True
refresh = 5
cachedir = "auto"

View File

@ -1,13 +0,0 @@
version: "2"
services:
webslider:
container_name: webslider
build:
context: .
ports:
- 5005:5000
volumes:
- ./images:/images
restart: always

View File

Before

Width:  |  Height:  |  Size: 43 B

After

Width:  |  Height:  |  Size: 43 B

View File

Before

Width:  |  Height:  |  Size: 673 B

After

Width:  |  Height:  |  Size: 673 B