mirceanton / home-ops

Monorepo to manage my Home Lab.
GNU General Public License v3.0
29 stars 3 forks source link

Migrate From TrueNAS to TalosNAS #339

Open mircea-pavel-anton opened 1 month ago

mircea-pavel-anton commented 1 month ago

I want to onboard my NAS system into my kubernetes cluster as well. The plan here would be to run Talos on it with the ZFS extension to manage my storage.

To do

mircea-pavel-anton commented 1 month ago
FROM alpine:3.12.0

RUN apk add --no-cache --update \
    samba-common-tools \
    samba-client \
    samba-server

COPY smb.conf /etc/samba/smb.conf

EXPOSE 139/tcp 445/tcp

CMD ["smbd", "--foreground", "--log-stdout", "--no-process-group"]