Skip to content
Permalink
Browse files
Scanning Tasks added
  • Loading branch information
aa9863 committed Feb 4, 2021
1 parent a4c75e6 commit 8dd53f6ee5200391009d9c6a1d93463071c84758
Show file tree
Hide file tree
Showing 3 changed files with 62 additions and 0 deletions.
@@ -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"
@@ -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"
@@ -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:

0 comments on commit 8dd53f6

Please sign in to comment.