加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
docker-compose.yml 406 Bytes
一键复制 编辑 原始数据 按行查看 历史
Christian Mehlmauer 提交于 2018-10-21 22:30 . change docker root exec
version: '3'
services:
ms:
image: metasploitframework/metasploit-framework:latest
environment:
DATABASE_URL: postgres://postgres@db:5432/msf?pool=200&timeout=5
links:
- db
ports:
- 4444:4444
volumes:
- $HOME/.msf4:/home/msf/.msf4
db:
image: postgres:10-alpine
volumes:
- pg_data:/var/lib/postgresql/data
volumes:
pg_data:
driver: local
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化