Skip to content

Commit

Permalink
Merge pull request #6 from johanvanhelden/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
johanvanhelden authored Nov 24, 2016
2 parents d70c187 + 3ac3c7a commit 5815295
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 15 deletions.
9 changes: 9 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,15 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p

- nothing

## 1.0.3 - 2016-11-24

### Changed

- Add the dns option to the workspace image to fix dns issues on OSX.
- Add a better update section to the readme.
- Increased xdebug dumping depth to show everything when dumping data. (php-5.6-fpm image)
- Ensure all e-mail is caught by Mailhog by default and update the readme to reflect this change. (php-5.6-fpm image)

## 1.0.2 - 2016-11-21

### Added
Expand Down
5 changes: 1 addition & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ services:
- ./../:/var/www/projects
- /etc/localtime:/etc/localtime:ro
tty: true
dns: 8.8.8.8

php:
container_name: dockerhero_php
Expand Down Expand Up @@ -58,10 +59,6 @@ services:
mail:
container_name: dockerhero_mail
image: mailhog/mailhog
volumes:
- /etc/localtime:/etc/localtime:ro
links:
- php
ports:
- "1025:1025"
- "8025:8025"
Expand Down
19 changes: 8 additions & 11 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Dockerhero

## Version 1.0.2
## Version 1.0.3

### What is Dockerhero?

Expand Down Expand Up @@ -37,7 +37,7 @@ Localtest.me is used to make everything work without editing your hosts file! Ju
## Table of Contents

1. [Installation](#installation)
2. [Updating images](#updating-images)
2. [Updating](#updating)
3. [Usage](#usage)
4. [Databases](#databases)
5. [CLI Access](#cli-access)
Expand Down Expand Up @@ -69,7 +69,11 @@ Dockerhero has full support for https. This is done with a self-signed certifica

This part is however entirely optional, and you do not have to do this. You can simply ignore the browser warning and continue.

## Updating images
## Updating

Simply download or pull the latest release from [GitHub](https://github.com/johanvanhelden/dockerhero) and [update the images](#updating-images).

### Updating images

To ensure you have the latest images, you can run `docker-compose pull` in the dockerhero folder.

Expand Down Expand Up @@ -145,14 +149,7 @@ Create a new file in `./crons/` called `crons`. In this file, define all the cro

## Mailhog

You can catch your application e-mail with the following e-mail settings:

```
SMTP Host: dockerhero_mail
SMTP Port: 1025
```

Next, visit the mailhog GUI by going to `http://localhost:8025`
All outgoing mail is caught by default. You do not need to configure anything. To view the e-mail that has been send, visit the [Mailhog GUI](http://localhost:8025)

## Contributing

Expand Down

0 comments on commit 5815295

Please sign in to comment.