Files
florida_saltaire_sys/florida/samba/docker-compose.yml
Greg Johnson 7581b6b8c2 initial commit
2025-08-05 15:03:49 +10:00

23 lines
671 B
YAML

version: '3.3'
name: florida_samba
services:
samba:
container_name: florida_samba
# https://github.com/awlx/samba-timemachine
image: awlnx/samba-timemachine:latest
ports:
# use 10445 is there are conflicts with macOS system samba server
# but then will have to specifically add :10465 to any server spec
# for time machone to find
# - 10445:445
- 465:465
environment:
USER: timemachine
PASS: Collictai1
USERID: 1002
GROUPID: 1002
volumes:
- /backups/timemachine:/backups:rw
restart: unless-stopped
tty: true