This guide uses Docker to run Samba.
For Docker installation, see Docker.
Create a directory to store your configuration and compose files.
mkdir -p /opt/samba
cd /opt/samba
Define a container for Samba.
services:
samba:
image: samba:latest
ports:
- "9000:9000"
volumes:
- ./data:/data
Start the container in the background.
docker compose up -d
Any questions?
Feel free to contact us. Find all contact information on our contact page.