The tiniest file-sharing server. Roughly equivalent to 1e-15 ordinary file-sharing servers.
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.
|
|
- version: '3.7'
- services:
- femtoshare:
- build:
- context: .
- dockerfile: Dockerfile
- ports:
- - 8000:8000
- image: femtoshare:latest
- restart: always
- container_name: femtoshare
- environment:
- - PORT=8000
- - TITLE=femtoshare
- - UID=1000
- user: "1000"
- volumes:
- - ./files:/files
|