Last active
January 27, 2025 18:56
-
-
Save ambalabanov/cd8798daeb8b840b99387ce613bf743c to your computer and use it in GitHub Desktop.
metasploit docker-compose
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .bashrc | |
# Source global definitions | |
if [ -f /etc/bashrc ]; then | |
. /etc/bashrc | |
fi | |
# Uncomment the following line if you don't like systemctl's auto-paging feature: | |
# export SYSTEMD_PAGER= | |
# User specific aliases and functions | |
function msfconsole() { | |
docker-compose up -d | |
docker attach metasploit | |
docker-compose down | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
ms: | |
stdin_open: true | |
tty: true | |
container_name: metasploit | |
image: metasploitframework/metasploit-framework:latest | |
environment: | |
DATABASE_URL: postgres://postgres:postgres@db:5432/msf | |
links: | |
- db | |
ports: | |
- 4444:4444 | |
db: | |
container_name: postgres | |
image: postgres:11-alpine | |
environment: | |
POSTGRES_DB: msf | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: postgres | |
volumes: | |
- pg_data:/var/lib/postgresql/data | |
volumes: | |
pg_data: | |
driver: local |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment