Share a directory through HTTP (protected by htaccess password) by using apache + php.
2.5K
Share a directory through HTTP (protected by htaccess password) by using apache + php.
services:
http-share2:
container_name: http-share2
image: antlafarge/http-share2:latest
ports:
- 80:80/tcp
environment:
HTPASSWD_USER: "MyUsername"
HTPASSWD_PASSWORD: "MyPassword"
HIDE_DOT_STARTING_DIRS: "true"
HIDE_DOT_STARTING_FILES: "true"
EXACT_FILE_SIZE: "false"
DATE_FORMAT: "Y/m/d H:i:s"
volumes:
- "/hdd/Videos/:/var/www/html/Videos/:ro"
- "/hdd/Series/:/var/www/html/Series/:ro"
- "/hdd/Music/:/var/www/html/Music/:ro"
Content type
Image
Digest
sha256:df85fd313…
Size
191.3 MB
Last updated
about 1 year ago
docker pull antlafarge/http-share2