Time | Item | Who | Notes |
---|
| PC Inventory | Alan Rawsthorne | |
| PC Inventory | | - Laptop: HP Spectre
- CPU: i7
- Physical Cores: 2
- Logical Cores: 4
- RAM: 8 GB
- Storage Total: 228 GB
- Storage Avail: 144 GB
|
| PC Inventory | Jessica Martz | - Laptop
- CPU: i7
- Physical Cores: 4
- Logical Cores: 8
|
| Possible technology investigations with Docker | | |
| Possible technology investigations with Docker | Ralph A. Navarro Jr. | Apache Solr Apache Zookeeper Atlassian |
| Jobfair in NH | Jessica Martz |
|
| JIRA installation | Jessica Martz | Started jira server as localhost Jira complains Installed Xray for JIRA plugin |
| LAMP | | vegasbrianc/docker-LAMP on GitHub - docker-compose.yml
db: image: mysql:latest ports: - "3306:3306" volumes: - ./var/mysql:/var/lib/mysql environment: - MYSQL_DATABASE=db - MYSQL_USER=dbuser - MYSQL_PASSWORD=mysql123 - MYSQL_ROOT_PASSWORD=mysql123
web: # image: eboraas/apache-php image: tutum/apache-php ports: - "80:80" - "443:443" links: - db volumes: - ./www:/app - Upgrade the apache-php to one more recent
Older versions of PHP and Apache have vulnerabilities which are frequently targeted by hackers. Newer versions of PHP and Apache include security fixes that harden the packages against vulnerabilities. To minimize the risk of these attacks, it is important to keep both Apache and PHP packages current.
The docker-compose.yml file can be changed to use a more current apache-php image.
|