├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── docker-compose.yml ├── ftp └── Dockerfile ├── ftps ├── Dockerfile └── vsftpd.pem ├── kerberos ├── docker-compose.yml ├── krb-kdc │ ├── Dockerfile │ └── escripts │ │ ├── add-admin.sh │ │ ├── create-realm.sh │ │ └── install-krb.sh ├── krb-service │ ├── Dockerfile │ └── escripts │ │ ├── add-http-keytab.sh │ │ ├── add-http-princ.sh │ │ ├── add-ssh-keytab.sh │ │ ├── add-ssh-princ.sh │ │ ├── apache2.conf │ │ ├── install-krb.sh │ │ └── maintenence.sh └── readme.md ├── mysql ├── Dockerfile └── setup.sql ├── php-56-apache-xdebug-25 └── Dockerfile ├── php-56-cli-xdebug-25 └── Dockerfile ├── php-71-apache-xdebug-25 └── Dockerfile ├── php-71-apache-xdebug-26 └── Dockerfile ├── php-71-apache-xdebug-27 └── Dockerfile ├── php-71-apache-xdebug-28 └── Dockerfile ├── php-71-cli-xdebug-25 └── Dockerfile ├── php-71-cli-xdebug-26 └── Dockerfile ├── php-71-cli-xdebug-27 └── Dockerfile ├── php-71-cli-xdebug-28 └── Dockerfile ├── php-72-apache-xdebug-27 └── Dockerfile ├── php-72-apache-xdebug-28 └── Dockerfile ├── php-72-apache-xdebug-29 └── Dockerfile ├── php-72-apache-xdebug-30 └── Dockerfile ├── php-72-cli-xdebug-27 └── Dockerfile ├── php-72-cli-xdebug-28 └── Dockerfile ├── php-72-cli-xdebug-29 └── Dockerfile ├── php-72-cli-xdebug-30 └── Dockerfile ├── php-73-apache-xdebug-27 └── Dockerfile ├── php-73-apache-xdebug-28 └── Dockerfile ├── php-73-apache-xdebug-29 └── Dockerfile ├── php-73-apache-xdebug-30 └── Dockerfile ├── php-73-cli-xdebug-27 └── Dockerfile ├── php-73-cli-xdebug-28 └── Dockerfile ├── php-73-cli-xdebug-29 └── Dockerfile ├── php-73-cli-xdebug-30 └── Dockerfile ├── php-74-apache-xdebug-29 └── Dockerfile ├── php-74-apache-xdebug-30 └── Dockerfile ├── php-74-cli-xdebug-29 └── Dockerfile ├── php-74-cli-xdebug-30 └── Dockerfile ├── php-80-apache-xdebug-30 └── Dockerfile ├── php-80-cli-xdebug-30 └── Dockerfile ├── php-81-apache-xdebug-31 └── Dockerfile ├── php-81-cli-xdebug-31 └── Dockerfile ├── php-82-apache-xdebug-32 └── Dockerfile ├── php-82-cli-xdebug-32 └── Dockerfile ├── php-83-apache └── Dockerfile ├── php-83-cli └── Dockerfile ├── proftpd ├── Dockerfile ├── proftpd.conf └── proftpd.pem ├── pure-ftpd ├── Dockerfile └── pure-ftpd.pem ├── sftp-server-ki ├── Dockerfile └── entrypoint ├── sftp-server-no-password ├── Dockerfile └── entrypoint ├── sftp-server ├── Dockerfile └── entrypoint ├── squid ├── Dockerfile ├── passwords └── squid.conf └── webdav ├── Dockerfile ├── README.md ├── apache.conf └── users.password /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /ftp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/ftp/Dockerfile -------------------------------------------------------------------------------- /ftps/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/ftps/Dockerfile -------------------------------------------------------------------------------- /ftps/vsftpd.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/ftps/vsftpd.pem -------------------------------------------------------------------------------- /kerberos/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/kerberos/docker-compose.yml -------------------------------------------------------------------------------- /kerberos/krb-kdc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/kerberos/krb-kdc/Dockerfile -------------------------------------------------------------------------------- /kerberos/krb-kdc/escripts/add-admin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/kerberos/krb-kdc/escripts/add-admin.sh -------------------------------------------------------------------------------- /kerberos/krb-kdc/escripts/create-realm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/kerberos/krb-kdc/escripts/create-realm.sh -------------------------------------------------------------------------------- /kerberos/krb-kdc/escripts/install-krb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/kerberos/krb-kdc/escripts/install-krb.sh -------------------------------------------------------------------------------- /kerberos/krb-service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/kerberos/krb-service/Dockerfile -------------------------------------------------------------------------------- /kerberos/krb-service/escripts/add-http-keytab.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/kerberos/krb-service/escripts/add-http-keytab.sh -------------------------------------------------------------------------------- /kerberos/krb-service/escripts/add-http-princ.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/kerberos/krb-service/escripts/add-http-princ.sh -------------------------------------------------------------------------------- /kerberos/krb-service/escripts/add-ssh-keytab.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/kerberos/krb-service/escripts/add-ssh-keytab.sh -------------------------------------------------------------------------------- /kerberos/krb-service/escripts/add-ssh-princ.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/kerberos/krb-service/escripts/add-ssh-princ.sh -------------------------------------------------------------------------------- /kerberos/krb-service/escripts/apache2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/kerberos/krb-service/escripts/apache2.conf -------------------------------------------------------------------------------- /kerberos/krb-service/escripts/install-krb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/kerberos/krb-service/escripts/install-krb.sh -------------------------------------------------------------------------------- /kerberos/krb-service/escripts/maintenence.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/kerberos/krb-service/escripts/maintenence.sh -------------------------------------------------------------------------------- /kerberos/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/kerberos/readme.md -------------------------------------------------------------------------------- /mysql/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/mysql/Dockerfile -------------------------------------------------------------------------------- /mysql/setup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/mysql/setup.sql -------------------------------------------------------------------------------- /php-56-apache-xdebug-25/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/php-56-apache-xdebug-25/Dockerfile -------------------------------------------------------------------------------- /php-56-cli-xdebug-25/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/php-56-cli-xdebug-25/Dockerfile -------------------------------------------------------------------------------- /php-71-apache-xdebug-25/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/php-71-apache-xdebug-25/Dockerfile -------------------------------------------------------------------------------- /php-71-apache-xdebug-26/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/php-71-apache-xdebug-26/Dockerfile -------------------------------------------------------------------------------- /php-71-apache-xdebug-27/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/php-71-apache-xdebug-27/Dockerfile -------------------------------------------------------------------------------- /php-71-apache-xdebug-28/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/php-71-apache-xdebug-28/Dockerfile -------------------------------------------------------------------------------- /php-71-cli-xdebug-25/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/php-71-cli-xdebug-25/Dockerfile -------------------------------------------------------------------------------- /php-71-cli-xdebug-26/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/php-71-cli-xdebug-26/Dockerfile -------------------------------------------------------------------------------- /php-71-cli-xdebug-27/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/php-71-cli-xdebug-27/Dockerfile -------------------------------------------------------------------------------- /php-71-cli-xdebug-28/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/php-71-cli-xdebug-28/Dockerfile -------------------------------------------------------------------------------- /php-72-apache-xdebug-27/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/php-72-apache-xdebug-27/Dockerfile -------------------------------------------------------------------------------- /php-72-apache-xdebug-28/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/php-72-apache-xdebug-28/Dockerfile -------------------------------------------------------------------------------- /php-72-apache-xdebug-29/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/php-72-apache-xdebug-29/Dockerfile -------------------------------------------------------------------------------- /php-72-apache-xdebug-30/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/php-72-apache-xdebug-30/Dockerfile -------------------------------------------------------------------------------- /php-72-cli-xdebug-27/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/php-72-cli-xdebug-27/Dockerfile -------------------------------------------------------------------------------- /php-72-cli-xdebug-28/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/php-72-cli-xdebug-28/Dockerfile -------------------------------------------------------------------------------- /php-72-cli-xdebug-29/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/php-72-cli-xdebug-29/Dockerfile -------------------------------------------------------------------------------- /php-72-cli-xdebug-30/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/php-72-cli-xdebug-30/Dockerfile -------------------------------------------------------------------------------- /php-73-apache-xdebug-27/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/php-73-apache-xdebug-27/Dockerfile -------------------------------------------------------------------------------- /php-73-apache-xdebug-28/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/php-73-apache-xdebug-28/Dockerfile -------------------------------------------------------------------------------- /php-73-apache-xdebug-29/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/php-73-apache-xdebug-29/Dockerfile -------------------------------------------------------------------------------- /php-73-apache-xdebug-30/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/php-73-apache-xdebug-30/Dockerfile -------------------------------------------------------------------------------- /php-73-cli-xdebug-27/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/php-73-cli-xdebug-27/Dockerfile -------------------------------------------------------------------------------- /php-73-cli-xdebug-28/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/php-73-cli-xdebug-28/Dockerfile -------------------------------------------------------------------------------- /php-73-cli-xdebug-29/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/php-73-cli-xdebug-29/Dockerfile -------------------------------------------------------------------------------- /php-73-cli-xdebug-30/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/php-73-cli-xdebug-30/Dockerfile -------------------------------------------------------------------------------- /php-74-apache-xdebug-29/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/php-74-apache-xdebug-29/Dockerfile -------------------------------------------------------------------------------- /php-74-apache-xdebug-30/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/php-74-apache-xdebug-30/Dockerfile -------------------------------------------------------------------------------- /php-74-cli-xdebug-29/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/php-74-cli-xdebug-29/Dockerfile -------------------------------------------------------------------------------- /php-74-cli-xdebug-30/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/php-74-cli-xdebug-30/Dockerfile -------------------------------------------------------------------------------- /php-80-apache-xdebug-30/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/php-80-apache-xdebug-30/Dockerfile -------------------------------------------------------------------------------- /php-80-cli-xdebug-30/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/php-80-cli-xdebug-30/Dockerfile -------------------------------------------------------------------------------- /php-81-apache-xdebug-31/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/php-81-apache-xdebug-31/Dockerfile -------------------------------------------------------------------------------- /php-81-cli-xdebug-31/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/php-81-cli-xdebug-31/Dockerfile -------------------------------------------------------------------------------- /php-82-apache-xdebug-32/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/php-82-apache-xdebug-32/Dockerfile -------------------------------------------------------------------------------- /php-82-cli-xdebug-32/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/php-82-cli-xdebug-32/Dockerfile -------------------------------------------------------------------------------- /php-83-apache/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/php-83-apache/Dockerfile -------------------------------------------------------------------------------- /php-83-cli/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/php-83-cli/Dockerfile -------------------------------------------------------------------------------- /proftpd/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/proftpd/Dockerfile -------------------------------------------------------------------------------- /proftpd/proftpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/proftpd/proftpd.conf -------------------------------------------------------------------------------- /proftpd/proftpd.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/proftpd/proftpd.pem -------------------------------------------------------------------------------- /pure-ftpd/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/pure-ftpd/Dockerfile -------------------------------------------------------------------------------- /pure-ftpd/pure-ftpd.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/pure-ftpd/pure-ftpd.pem -------------------------------------------------------------------------------- /sftp-server-ki/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/sftp-server-ki/Dockerfile -------------------------------------------------------------------------------- /sftp-server-ki/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/sftp-server-ki/entrypoint -------------------------------------------------------------------------------- /sftp-server-no-password/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/sftp-server-no-password/Dockerfile -------------------------------------------------------------------------------- /sftp-server-no-password/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/sftp-server-no-password/entrypoint -------------------------------------------------------------------------------- /sftp-server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/sftp-server/Dockerfile -------------------------------------------------------------------------------- /sftp-server/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/sftp-server/entrypoint -------------------------------------------------------------------------------- /squid/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/squid/Dockerfile -------------------------------------------------------------------------------- /squid/passwords: -------------------------------------------------------------------------------- 1 | jetbrains:$apr1$XkSH1BNl$ZdVepa0nQnr491kIpf7QO1 2 | -------------------------------------------------------------------------------- /squid/squid.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/squid/squid.conf -------------------------------------------------------------------------------- /webdav/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/webdav/Dockerfile -------------------------------------------------------------------------------- /webdav/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/webdav/README.md -------------------------------------------------------------------------------- /webdav/apache.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-docker-images/HEAD/webdav/apache.conf -------------------------------------------------------------------------------- /webdav/users.password: -------------------------------------------------------------------------------- 1 | jetbrains:webdav:2690b87c6324411db4de3d180156591f 2 | --------------------------------------------------------------------------------