1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-27 09:18:43 +00:00
dockerfiles/metasploit/arm/docker-compose.yml
2017-11-01 08:48:49 +08:00

23 lines
403 B
YAML

version: '2'
services:
ms:
image: easypi/metasploit-arm
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: easypi/postgres-arm
volumes:
- pg_data:/var/lib/postgresql/data
volumes:
pg_data:
driver: local