this post was submitted on 08 Jan 2025
36 points (95.0% liked)

Selfhosted

41617 readers
397 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

  1. Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.

  4. Don't duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 2 years ago
MODERATORS
 

Is there a way to setup an SMB share or similar via docker? I want to be able to easily turn it off and bind it to a specific folder, and I am comfortable with docker.

Thanks!

you are viewing a single comment's thread
view the rest of the comments
[–] ikidd 4 points 3 weeks ago (1 children)

Those are quite the environment variable names there.

[–] [email protected] 5 points 3 weeks ago (1 children)

Yes, it’s explained in the documentation.

E.g.:

SAMBA_GLOBAL_CONFIG_bind_SPACE_interfaces_SPACE_only: yes

maps to:

[global]
bind interfaces only = yes

This way you don’t need to provide any extra configuration file.

[–] ikidd 3 points 3 weeks ago (1 children)

I'm well aware of how inline environment variables work, but that is one helldammer of a name for one, and I rarely see anyone use actual spaces in .env file variable, let alone translate a space to SPACE in a variable name.

[–] [email protected] 1 points 3 weeks ago* (last edited 3 weeks ago)

These variable names are dynamically parsed and used for generating the smb.conf.

And if you need a way to support underscores AND spaces (which are not allowed in a variable name), you have to get creative.

I like the solution as it allows me to encode any possible configuration value (even the most obscure one) in the compose file.