Time Machine for your apple computers

When you are a fan of the Apple products, as we are, it is obvious that you want to make backups using Time Machine. And what better way than to do this on your own server, right? The compose file is very basic, as shown below.
version: '3.4' services: timemachine: image: odarriba/timemachine container_name: ${CONTAINER_NAME} volumes: - vol_TimeMachine:/timemachine ports: - 548:548 - 636:636 restart: unless-stopped volumes: vol_TimeMachine: external: name: ${CONTAINER_VOLUME}
Hits: 1