21 lines
440 B
YAML
21 lines
440 B
YAML
version: "3"
|
|
|
|
services:
|
|
time-machine:
|
|
build: ./docker-timemachine
|
|
container_name: docker-timemachine
|
|
env_file: '.env'
|
|
environment:
|
|
- AFP_NAME=Time Machine
|
|
- PUID=1000
|
|
- PGID=1000
|
|
volumes:
|
|
- ./data:/timemachine
|
|
ports:
|
|
- "548:548"
|
|
- "636:636"
|
|
restart: unless-stopped
|
|
labels:
|
|
# TODO: this should not be required?
|
|
- com.centurylinklabs.watchtower.enable="false"
|