diff --git a/.gitignore b/.gitignore index 9463c72..60baa9c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1 @@ -data/postal/* -data/mysql/* +data/* diff --git a/README.md b/README.md index c8facb6..718553e 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,11 @@ ### Docker Hub Daily Builds Status -| tag | Status | -| ------------- | ------------------------------------------------------------------------------------------------------------------------------------------------ | -| latest | [![Daily Build](https://api.travis-ci.org/ALinuxNinja/docker-postal.svg?branch=latest)](https://hub.docker.com/r/alinuxninja/postal/) | +| tag | Status | +| ------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| latest | [![Daily Build](https://api.travis-ci.org/ALinuxNinja/docker-postal.svg?branch=latest)](https://hub.docker.com/r/alinuxninja/postal/) | [\[Build\]](https://travis-ci.org/ALinuxNinja/docker-postal) | + +Side Note: Sometimes, ruby fails to fetch and the build looks like it's failed. Also, each branch corresponds to the docker tag, so the "master" branch always shows that it has failed. ### Instructions Change configuration in docker-compose.yml to update passwords for MySQL/RabbitMQ. diff --git a/docker-compose.yml b/docker-compose.yml index 7fe25cd..0dbe823 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -6,8 +6,8 @@ services: container_name: postal command: run ports: - - 127.0.0.1:80:5000 - - 127.0.0.1:25:2525 + - 127.0.0.1:80:80 + - 127.0.0.1:25:25 depends_on: - "mysql" - "rabbitmq"