Skip to content

Commit 2324067

Browse files
authored
Merge pull request #1569 from apinf/update-docker-hub-image-name
Update DockerHub image name.
2 parents b9dcde2 + 9c2ac12 commit 2324067

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ services:
99
- docker
1010

1111
script:
12-
- docker build -t apinf/apinf:"$TRAVIS_BRANCH" .
12+
- docker build -t apinf/platform:"$TRAVIS_BRANCH" .
1313
- docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"
14-
- docker push apinf/apinf:"$TRAVIS_BRANCH"
14+
- docker push apinf/platform:"$TRAVIS_BRANCH"

CONTRIBUTING.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ This can be accomplished by grabbing the container ID with a docker ps, then pas
160160
```
161161
$ docker ps
162162
CONTAINER ID IMAGE
163-
ce9de67fdcbe apinf/apinf:latest
163+
ce9de67fdcbe apinf/platform:latest
164164
$ docker exec -it ce9de67fdcbe /bin/bash
165165
root@ce9de67fdcbe:/#
166166
```
@@ -177,17 +177,17 @@ alias apinf_web='docker exec -it `docker ps | grep web | sed "s/ .*//"` /bin/bas
177177
To build packages for the current APInf version:
178178
179179
```
180-
$ docker build -t apinf/apinf:INSERT_VERSION_HERE .
181-
$ docker tag apinf/apinf:INSERT_VERSION_HERE apinf/apinf:latest
180+
$ docker build -t apinf/platform:INSERT_VERSION_HERE .
181+
$ docker tag apinf/platform:INSERT_VERSION_HERE apinf/platform:latest
182182
```
183183
184184
### Pushing to Docker Hub
185185
186-
To publish the new images to our [Docker Hub repository](https://hub.docker.com/r/apinf/apinf/):
186+
To publish the new images to our [Docker Hub repository](https://hub.docker.com/r/apinf/platform/):
187187
188188
```
189-
$ docker push apinf/apinf:INSERT_VERSION_HERE
190-
$ docker push apinf/apinf:latest
189+
$ docker push apinf/platform:INSERT_VERSION_HERE
190+
$ docker push apinf/platform:latest
191191
```
192192
193193
# Contributing code
@@ -220,7 +220,7 @@ In a nutshell, **write code for humans to read and understand**. Our code will b
220220
* Placing comments on the preceeding line, as opposed to the end of the line, improves readability
221221
* comment can be long, e.g. 80 characters
222222
* comments at same level of nesting fall in-line with one another vertically
223-
223+
224224
#### Example comment
225225
```js
226226
// Try and find the missing widget
@@ -259,7 +259,7 @@ let missingWidgets = Widgets.find().fetch();
259259
if (missingWidgets) {
260260
// Count the missing widgets
261261
let missingWidgetsCount = missingWidgets.length
262-
262+
263263
// Alert the boss!
264264
console.log(missingWidgetsCount, "widgets are missing!");
265265
}
@@ -307,7 +307,7 @@ Configure your IDE to use eslint with the Airbnb styleguide.
307307
Reference: Meteor Guide - Check Your Code with ESLint [Integrating with your editor](https://guide.meteor.com/code-style.html#eslint-editor)
308308

309309
# File structure
310-
This project is organized around a 'module' / 'component' architecture.
310+
This project is organized around a 'module' / 'component' architecture.
311311

312312
By 'module', we mean anything that has it's own database collection and one or more routes. Components are more closely related to the idea of [WebComponents](http://webcomponents.org/), which are intended to be reusable, hierarchical user interface elements. Modules are located in the project root, with components in the client sub-directory.
313313

INSTALL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
1. Run API-umbrella container http://api-umbrella.readthedocs.io/en/latest/getting-started.html#running-with-docker
1414
2. Obtaining API Key and Authentication token. You can obtain the *Authentication Token* and *API Key* from the API Umbrella platform by following instructions in the [Getting Started](http://apiumbrella.io/docs/getting-started/) and [API Umbrella Admin API](http://apiumbrella.io/docs/admin-api/) documentation.
15-
3. Run APInf container ```docker run -p 8080:80 -e MONGO_URL=mongodb://localhost:27017/your_db -e MAIL_URL=smtp://some.mailserver.com:25 -e ROOT_URL=http://YOUR_SITE_DOMAIN apinf/apinf:latest```
15+
3. Run APInf container ```docker run -p 8080:80 -e MONGO_URL=mongodb://localhost:27017/your_db -e MAIL_URL=smtp://some.mailserver.com:25 -e ROOT_URL=http://YOUR_SITE_DOMAIN apinf/platform:latest```
1616
4. Configure APInf
1717

1818
### Configure APInf

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
## Docker image
88

9-
[![](https://images.microbadger.com/badges/image/apinf/apinf.svg)](http://microbadger.com/images/apinf/apinf) [![](https://images.microbadger.com/badges/version/apinf/apinf.svg)](http://microbadger.com/images/apinf/apinf)
9+
[![](https://images.microbadger.com/badges/image/apinf/platform.svg)](http://microbadger.com/images/platform/apinf) [![](https://images.microbadger.com/badges/version/apinf/platform.svg)](http://microbadger.com/images/apinf/platform)
1010

1111
# Links
1212
- [Documentation](http://apinf.org/docs) - APInf documentation

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: '2'
22
services:
33
apinf:
4-
image: apinf/apinf
4+
image: apinf/platform
55
restart: always
66
env_file:
77
- 'docker/apinf/env'

0 commit comments

Comments
 (0)