Dockercontainer wich imports apks from the playstore and generates an fdroid-repo
-
create an raccon repository like written on raccoon website
-
Strat the docker container and mount the volumes
docker run --name p2f \
-v <path-to-raccoon-archive>:/raccoon \
-v <path-to-fdroid-repo>:/fdroid \
-v <path-to-import.txt>:/import.txt headbanger84/playstore2fdroid
- Adding new Apps is done via the
import.txt
add the market-link for the app you want to add to the repository.
market://details?id=org.videolan.vlc
The content of the file is deleted after importing the apps.
use an nginx container to publish your repository
docker run --name some-nginx -p 80:80 \
-v <path-to-fdroid-repo>/repo:/usr/share/nginx/html/repo:ro \
-v <path-to some-index.html>:/usr/share/nginx/html/index.html:ro \
-d nginx
Allows to add new apps to your
Path for the raccon Archive
Path to your fdroid repository
Special Thanks to: