https://github.com/theanam/docker-apktool
Docker image for Latest Apktool ðŸ›
https://github.com/theanam/docker-apktool
apktool docker
Last synced: 2 months ago
JSON representation
Docker image for Latest Apktool ðŸ›
- Host: GitHub
- URL: https://github.com/theanam/docker-apktool
- Owner: theanam
- Created: 2018-11-06T18:29:52.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-02-11T04:53:26.000Z (over 4 years ago)
- Last Synced: 2025-04-10T02:53:48.813Z (about 1 year ago)
- Topics: apktool, docker
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/theanam/apktool/
- Size: 1.95 KB
- Stars: 19
- Watchers: 0
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Docker Image for apktool
Based on `OpenJDK 8` and `Apktool 2.4.0`, I have plans to keep this updated (you can contribute too)
### System Requirements:
* [Docker](https://www.docker.com/get-started) 18.06.1+
### How to use:
for `99.99%` of cases, you probably want to run the command once, and then remove the container.
To run it once use the following command (will take longer for the first time):
docker run --rm -v `pwd`:/app theanam/apktool d apk_file.apk
this should decompile the apk file `apk_file.apk`
### Better way to use:
You might convert the above command to an alias. Open your `.bashrc` or `.zshrc` or any other shell configuration file, add the following at the very end:
alias apktool="docker run --rm -v `pwd`:/app theanam/apktool"
once you close and open a new terminal window once after that, you can use the tool from command line in a cleaner way as the command (apktool) will be available:
apktool d apk_file.apk
or you can use any other command line arguments mentioned in their official Site:
> Applications are properties of their respective owners.
### Tools used:
1. Docker ()
2. apktool (https://ibotpeaches.github.io/Apktool/)
3. openJDK Docker Image (https://hub.docker.com/_/openjdk/)