CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/test/smb/docker-compose.yml
Views: 11765
1
services:
2
samba:
3
tty: true
4
network_mode: bridge
5
ports:
6
- "139:139"
7
- "445:445"
8
healthcheck:
9
test: smbclient -U 'acceptance_tests_user%acceptance_tests_password' -L 127.0.0.1
10
interval: 10s
11
timeout: 5s
12
retries: 5
13
start_period: 5s
14
build:
15
context: .
16
dockerfile: Dockerfile
17
18