Skip to content

Instantly share code, notes, and snippets.

@ambalabanov
Last active January 27, 2025 18:56
Show Gist options
  • Save ambalabanov/cd8798daeb8b840b99387ce613bf743c to your computer and use it in GitHub Desktop.
Save ambalabanov/cd8798daeb8b840b99387ce613bf743c to your computer and use it in GitHub Desktop.
metasploit docker-compose
# .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
}
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