CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/test/smb/docker-compose.yml
Views: 1904
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