13 lines
323 B
Bash
13 lines
323 B
Bash
|
#!/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
|
||
|
|