https://github.com/jamesmstone/flickr-uploadr
:camera: A docker image that can be used to upload flickr images
https://github.com/jamesmstone/flickr-uploadr
docker docker-image dockerfile flickr uploader
Last synced: 10 months ago
JSON representation
:camera: A docker image that can be used to upload flickr images
- Host: GitHub
- URL: https://github.com/jamesmstone/flickr-uploadr
- Owner: jamesmstone
- Created: 2017-06-11T01:03:22.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2021-12-10T10:04:22.000Z (over 4 years ago)
- Last Synced: 2025-07-14T23:36:15.614Z (11 months ago)
- Topics: docker, docker-image, dockerfile, flickr, uploader
- Language: Python
- Homepage:
- Size: 20.5 KB
- Stars: 7
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Flickr-uploadr
## Warning: Not actively being developed
This has not been updated ( or used ) by me in years! I currently have no plans to update it again.
--------
A docker image that uploads all media in a dir to flickr
## Example Usage:
`docker run -it -v $HOME/token:/token -e "api_key=keyhere" -e "api_secret=secrethere" -v $(pwd)/image_dir:/images/ jamesmstone/flickr-uploadr`
This uploads the media in `$(pwd)/image_dir` to flickr
and stores the users token in `$HOME/token`
Note you need your own api key and secret
This uses the new `oauth` method of authentication.
## Prereq's
- [docker](https://www.docker.com/) - Yes that's it!
I find the easiest way to install on linux devices is `$ ` [`wget -O - https://bit.ly/docker-install| bash`](https://gist.github.com/wdullaer/f1af16bd7e970389bad3#gistcomment-1589374)