Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
dgraph
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Mirror
dgraph
Commits
62d957f5
Unverified
Commit
62d957f5
authored
7 years ago
by
Manish R Jain
Browse files
Options
Downloads
Plain Diff
Merge tag 'v1.0.6' into release/v1.0.6
Dgraph v1.0.6
parents
48ae17ff
5caa866c
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGELOG.md
+2
-1
2 additions, 1 deletion
CHANGELOG.md
contrib/Dockerfile
+18
-0
18 additions, 0 deletions
contrib/Dockerfile
contrib/release.sh
+10
-0
10 additions, 0 deletions
contrib/release.sh
with
30 additions
and
1 deletion
CHANGELOG.md
+
2
−
1
View file @
62d957f5
...
...
@@ -26,6 +26,7 @@ and this project will adhere to [Semantic Versioning](http://semver.org/spec/v2.
*
Fix bugs in snapshot move, refactor code and improve performance significantly. #2440, #2442
*
Add error handling to GetNoStore. Fixes #2373.
*
Fix bugs in Bulk loader. #2449
*
Posting List and Raft bug fixes. #2457
### Changed
...
...
@@ -35,7 +36,7 @@ and this project will adhere to [Semantic Versioning](http://semver.org/spec/v2.
*
Trace how node.Run loop performs.
*
Allow tweaking Badger options.
*
Warning:
This change modifies some flag names. In particular, Badger options
*
*Note:**
This change modifies some flag names. In particular, Badger options
are now exposed via flags named with
`--badger.`
prefix.
## [1.0.5] - 2018-04-20
...
...
This diff is collapsed.
Click to expand it.
contrib/
nightly/
Dockerfile
→
contrib/Dockerfile
+
18
−
0
View file @
62d957f5
# This file is used to add the nightly Dgraph binaries and assets to Dgraph base
# image.
# Command to build - docker build -t dgraph/dgraph:nightly .
# This gets built as part of release.sh. Must be run from /tmp/build, with the linux binaries
# already built and placed there.
FROM
ubuntu:
16.04
FROM
ubuntu:
latest
MAINTAINER
Dgraph Labs <contact@dgraph.io>
RUN
mkdir
/dgraph
\
&&
apt-get update
\
&&
apt-get
install
-y
--no-install-recommends
ca-certificates curl
\
&&
rm
-rf
/var/lib/apt/lists/
*
ADD
dgraph-build /usr/local/bin
ADD
linux /usr/local/bin
EXPOSE
8080
EXPOSE
9080
RUN
mkdir
/dgraph
WORKDIR
/dgraph
CMD
["dgraph"] # Shows the dgraph version and commands available.
This diff is collapsed.
Click to expand it.
contrib/release.sh
+
10
−
0
View file @
62d957f5
...
...
@@ -12,6 +12,8 @@ rm -Rf $GOPATH
mkdir
$GOPATH
TAG
=
$1
# DO NOT change the /tmp/build directory, because Dockerfile also picks up binaries from there.
TMP
=
"/tmp/build"
rm
-Rf
$TMP
mkdir
$TMP
...
...
@@ -134,6 +136,14 @@ createSum () {
createSum darwin
createSum linux
# Create Docker image.
cp
$basedir
/dgraph/contrib/Dockerfile
$TMP
pushd
$TMP
docker build
-t
dgraph/dgraph:
$TAG
.
popd
rm
$TMP
/Dockerfile
# Create the tars and delete the binaries.
createTar
()
{
os
=
$1
echo
"Creating tar for
$os
"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment