Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add docker-compose.yml and Dockerfile #17

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

Conversation

crstian19
Copy link

I use it with traefik 2.0 as reverse proxy, it works for me.

@dominee
Copy link

dominee commented Nov 8, 2023

You can use this simple Dockerfile as an example to build your own image.

FROM python:3.8-slim-buster
WORKDIR /app
RUN pip install updog
EXPOSE 9090
ENTRYPOINT ["python", "-m", "updog"]
CMD ["--password", "secret123"]

Build it docker build -t updog .
Run it using /tmp as your upload dir and with a different password

docker run --name updog -d -p 9090:9090 -v /tmp:/app updog --password SuperSecret123

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants