Simple lightweight python files server. #krash https://pages.charlesreid1.com/d-python-files
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
222 B

version: "3.1"
services:
stormy_files:
image: jfloff/alpine-python:recent-onbuild
command: bash -c "cd /files && python3 -m http.server 8081"
volumes:
- "./files:/files"
ports:
- "8081:8081"