13 lines
323 B
Bash
Executable File
13 lines
323 B
Bash
Executable File
#!/bin/sh
|
|
|
|
docker run \
|
|
-d \
|
|
--volume "/srv/activitycollect/config:/etc/activitycollect" \
|
|
--volume "/srv/dropbox/Apps/WahooFitness:/activitycollect/infolder/" \
|
|
--volume "/srv/activitycollect/data/processed:/activitycollect/outfolder/" \
|
|
--name activitycollect \
|
|
--rm \
|
|
--restart unless-stopped \
|
|
activitycollect
|
|
|