You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Create dockerimage.yml
* Rename dockerimage.yml to .github/.workflow/dockerimage.yml
* Rename .github/.workflow/dockerimage.yml to .github/workflows/dockerimage.yml
* Update dockerimage.yml
* Update dockerimage.yml
* Update dockerimage.yml
* Update dockerimage.yml
* runs in -it mode, need to get cmd sorted out
* Update dockerimage.yml
add tag_names and trigger on release.
* empty commit to trigger build
* little bit of cleanup
* readme
* Update README.md
* remove docker-action branch from dockerimage.yml
Copy file name to clipboardexpand all lines: README.md
+20
Original file line number
Diff line number
Diff line change
@@ -50,6 +50,26 @@ sudo ./setup/install.sh
50
50
51
51
There's also a [quickstart here](http://www.powershellempire.com/?page_id=110) and full [documentation here](http://www.powershellempire.com/?page_id=83).
52
52
53
+
## Docker
54
+
If you want to run Empire using a pre-built docker container:
55
+
```bash
56
+
docker pull bcsecurity/empire:{version}
57
+
docker run -it bcsecurity/empire:{version}
58
+
59
+
# with persistent storage
60
+
docker pull bcsecurity/empire:{version}
61
+
docker create -v /empire --name data bcsecurity/empire:{version}
62
+
docker run -it --volumes-from data bcsecurity/empire:{version}
63
+
64
+
# if you prefer to be dropped into bash instead of directly into empire
65
+
# or docker run -it --volumes-from data bcsecurity/empire:{version} /bin/bash
66
+
```
67
+
68
+
All image versions can be found at: https://hub.docker.com/r/bcsecurity/empire/
69
+
* The last commit from master will be deployed to the `latest` tag
70
+
* The last commit from the dev branch will be deployed to the `dev` tag
71
+
* All github tagged releases will be deployed using their version numbers (v3.0, v3.1, etc)
72
+
53
73
## Quickstart
54
74
55
75
Check out the [Empire wiki](https://github.com/EmpireProject/Empire/wiki/Quickstart) for instructions on getting started with Empire.
0 commit comments