Sign inSign up

tobysmyki/anoshare

By tobysmyki

Updated over 1 year ago
Archived

Image
0

312

tobysmyki/anoshare repository overview

This Docker image provides a simple SMB (Samba) and FTP server with anonymous read/write access, designed for easy file sharing. It supports multi-architecture platforms including amd64 and arm64.

Features

  • Anonymous Access: No authentication required for both SMB and FTP.
  • Multi-Architecture Support: Works seamlessly on amd64 and arm64 platforms.
  • Lightweight: Based on Alpine Linux, ensuring a small image size.
  • Easy Setup: Minimal configuration required, just mount your shared folder.

To start the container, use the following command:

docker run -d \
    -v /path/to/shared/folder:/media/share \
    -p 21:21 -p 139:139 -p 445:445 \
    --cap-add SYS_ADMIN \
    --security-opt "apparmor=unconfined" \
    tobysmyki/anoshare:latest

Access the Shared Folder

SMB (Samba):

  • Windows: Open \container-or-server-ip\share in File Explorer.
  • Linux: Use smbclient or mount the share directly.
  • macOS: Use Finder and connect to smb://container-or-server-ip/share.

FTP:

  • URL: ftp://container-or-server-ip
  • Username: anonymous
  • Password: Leave blank.

Environment Variables

You can customize the container using the following environment variables:

ALPINE_VERSION: Specify the Alpine Linux version (default: latest).

Tag summary

Content type

Image

Digest

sha256:255d09be3

Size

23.7 MB

Last updated

over 1 year ago

docker pull tobysmyki/anoshare