mirror of
https://github.com/theoleuthardt/homelab-docker-compose.git
synced 2026-06-05 15:41:07 +00:00
21 lines
575 B
YAML
21 lines
575 B
YAML
name: time-machine
|
|
services:
|
|
timemachine:
|
|
restart: always
|
|
container_name: timemachine
|
|
network_mode: host
|
|
environment:
|
|
- TM_USERNAME=timemachine
|
|
- TM_GROUPNAME=timemachine
|
|
- PASSWORD=timemachine
|
|
- TM_UID=1000
|
|
- TM_GID=1000
|
|
- SET_PERMISSIONS=false
|
|
- VOLUME_SIZE_LIMIT=0
|
|
volumes:
|
|
- time_machine_data:/opt/timemachine
|
|
tmpfs: /run/samba
|
|
image: mbentley/timemachine:smb
|
|
volumes:
|
|
time_machine_data:
|
|
external: true
|