diff --git a/Week3_Scanning/Target1/docker-compose.yaml b/Week3_Scanning/Target1/docker-compose.yaml new file mode 100644 index 0000000..7121343 --- /dev/null +++ b/Week3_Scanning/Target1/docker-compose.yaml @@ -0,0 +1,18 @@ +version: '3' +services: + ssh: + image: cueh/debian_ssh + ports: + - "22:22" + web: + image: cueh/php_apache + ports: + - "80:80" + ftp: + image: stilliard/pure-ftpd + ports: + - "21:21" + smtp: + image: cueh/typewriter_postfix + ports: + - "25:25" \ No newline at end of file diff --git a/Week3_Scanning/Target2/docker-compose.yaml b/Week3_Scanning/Target2/docker-compose.yaml new file mode 100644 index 0000000..d370fe2 --- /dev/null +++ b/Week3_Scanning/Target2/docker-compose.yaml @@ -0,0 +1,18 @@ +version: '3' +services: + ssh: + image: cueh/debian_ssh + ports: + - "242:22" + web: + image: cueh/php_apache + ports: + - "443:80" + ftp: + image: stilliard/pure-ftpd + ports: + - "21:21" + smtp: + image: cueh/typewriter_postfix + ports: + - "25:25" \ No newline at end of file diff --git a/Week3_Scanning/Target3/docker-compose.yaml b/Week3_Scanning/Target3/docker-compose.yaml new file mode 100644 index 0000000..d1092bb --- /dev/null +++ b/Week3_Scanning/Target3/docker-compose.yaml @@ -0,0 +1,26 @@ +version: '3' +services: + ssh: + image: cueh/debian_ssh + ports: + - "242:22" + web: + image: cueh/scanningweb #cueh/php_apache + ports: + - "80:80" + volumes: + - data-volume:/var/www/html/ftp-uploads/ + ftp: + image: cueh/ftpanon #stilliard/pure-ftpd + ports: + - "21:21" + - "30000-30009:30000-30009" + volumes: + - data-volume:/var/ftp/ + smtp: + image: cueh/typewriter_postfix + ports: + - "25:25" + +volumes: + data-volume: