Skip to content

Commit 835a41d

Browse files
authored
Merge pull request #27 from me-box/development
0.1.1 Release
2 parents 53d7661 + 17cdc7c commit 835a41d

11 files changed

+385
-542
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,6 @@ node_modules
3939
sladatastore.db
4040
certs/*
4141
updateLocalRegistry.sh
42+
43+
\.DS_Store
44+
scripts/*

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
88

99
### Added
1010

11+
### Changed
1112

1213

14+
## [0.1.1] 2017-04-05
1315
### Changed
1416
* Moved databox container manger to node:alpine to save bandwidth. #14
17+
* Removed the need to run update updateLocalRegistry.sh #13
18+
* code cleanup in container-manager.js
19+
* Update to local registry Env Vars
20+
* reduced size of databox-export service
1521

1622
## [0.1.0] 2017-03-24
1723

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:latest
1+
FROM node:alpine
22

33
ADD ./package.json /package.json
44
RUN npm install --production

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ Once Its started point a web browser at 127.0.0.1:8989 and have fun. This is dat
2121

2222
## Development
2323

24-
To develop for the Databox platform, it may be necessary to run the platform in dev mode. This will enable a local app store and image repository to be run in containers on your machine. In this mode it is possible to build and replace any part of the platform.@
24+
To develop for the Databox platform, it may be necessary to run the platform in dev mode. This will enable a local app store and image repository to be run in containers on your machine. In this mode it is possible to build and replace any part of the platform.
2525

2626
First get the clone this repository:
2727

28-
git clone https://github.com/me-box/databox-container-manager.git
29-
cd databox-container-manager
28+
git clone https://github.com/me-box/databox.git
29+
cd databox
3030
npm install
3131

32-
Then launch in dev mode by executing `sudo ./platformDevMode.sh`. A new container will be launched, and additional instructions will be presented.
32+
Then launch in dev mode by executing `./platformDevMode.sh`. A new container will be launched, and additional instructions will be presented.
3333

3434
NB: Mount ./certs and ./slaStore as volumes if you want ssl certs and launched apps to save between restarts.
3535

platformDevMode.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ docker create \
1212
-e "DATABOX_DEV=1" \
1313
--label databox.type=container-manager \
1414
-p 8989:8989 \
15-
-t node:latest npm --prefix /cm start
15+
-t node:alpine npm --prefix /cm start
1616

1717

1818
docker start -i databox-cm

sdkDevMode.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ docker create \
1212
-e "DATABOX_SDK=1" \
1313
--label databox.type=container-manager \
1414
-p 8989:8989 \
15-
-t node:latest npm --prefix /cm start
15+
-t node:alpine npm --prefix /cm start
1616

1717

1818
docker start -i databox-cm

0 commit comments

Comments
 (0)