mirror of
https://github.com/rapid7/metasploit-framework
synced 2024-11-05 14:57:30 +01:00
23 lines
428 B
YAML
23 lines
428 B
YAML
version: '3'
|
|
services:
|
|
ms:
|
|
image: metasploitframework/metasploit-framework:latest
|
|
environment:
|
|
DATABASE_URL: postgres://postgres@db:5432/msf
|
|
links:
|
|
- db
|
|
ports:
|
|
- 4444:4444
|
|
volumes:
|
|
- $HOME/.msf4:/home/msf/.msf4
|
|
- /etc/localtime:/etc/localtime:ro
|
|
|
|
db:
|
|
image: postgres:10-alpine
|
|
volumes:
|
|
- pg_data:/var/lib/postgresql/data
|
|
|
|
volumes:
|
|
pg_data:
|
|
driver: local
|