|
1 | 1 | # samba-timemachine-docker
|
2 | 2 |
|
3 |
| -This is a docker container based on Debian Buster running SAMBA and configured to provide Apple "Time Capsule" like backups. |
| 3 | +This is a docker container based on Ubuntu Focal running SAMBA and configured to provide Apple "Time Capsule" like backups. |
4 | 4 |
|
5 |
| -The Docker Hub images support x86_64, Raspberry Pi 2/3/4 and other ARM based systems. |
| 5 | +The Docker Hub images support x86_64, Raspberry Pi 2/3/4 and other modern ARM based systems. |
6 | 6 |
|
7 | 7 | An example of how to use the container
|
8 | 8 |
|
9 | 9 | ```bash
|
10 | 10 | docker run -d -t \
|
11 | 11 | -v /backups/timemachine:/backups \
|
12 | 12 | -p 10445:445 \
|
13 |
| - --restart unless-stopped timjdfletcher/samba-timemachine:timemachine-v2.3.2 |
| 13 | + --restart unless-stopped timjdfletcher/samba-timemachine:timemachine-v2.4 |
14 | 14 | ```
|
15 | 15 |
|
16 | 16 | This example maps the docker host port 10445 to the container port 445, so the container can be run alongside a normal SAMBA service.
|
17 | 17 |
|
18 | 18 | # Discovery
|
19 | 19 |
|
20 |
| -The container only runs smbd, to enable discovery on your local network use avahi-daemon (mDNS). |
| 20 | +The container only runs smbd, to enable discovery on your local network use multicast DNS such as avahi. |
21 | 21 |
|
22 | 22 | I do this by running avahi-daemon on the docker host system, for debian systems install the package avahi-daemon:
|
23 | 23 |
|
@@ -61,13 +61,11 @@ I'm unclear if this works correctly in macOS.
|
61 | 61 |
|
62 | 62 | Serverspec tests are included, to execute the tests use the run script: `./run test`
|
63 | 63 |
|
64 |
| -# Package Versions |
| 64 | +# Versions |
65 | 65 |
|
66 |
| -To find the latest versions of Samba and ip route2 use: |
67 |
| - |
68 |
| -```bash |
69 |
| -docker run debian:bullseye-slim /bin/bash -c "apt update && apt show samba iproute2" |
70 |
| -``` |
| 66 | +Base image: [Ubuntu Focal](https://hub.docker.com/_/ubuntu?tab=tags&page=1&name=focal) |
| 67 | +[SAMBA](https://packages.ubuntu.com/focal/samba) |
| 68 | +[iproute2](https://packages.ubuntu.com/focal/iproute2) |
71 | 69 |
|
72 | 70 | # Docker image builds
|
73 | 71 |
|
|
0 commit comments