Skip to content

Commit af9eb6b

Browse files
authored
Merge pull request #177 from c-martinez/master
Make release v1.2.1
2 parents badab45 + 6b09acd commit af9eb6b

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ license: MIT
2424
message: "If you use this software, please cite it as below."
2525
repository-code: "https://github.com/CLARIAH/grlc"
2626
title: grlc
27-
version: "1.2.0"
27+
version: "1.2.1"

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,11 @@ docker pull clariah/grlc
4545
docker-compose -f docker-compose.default.yml up
4646
</pre>
4747

48+
To run directly from Docker Hub it is sufficient to do:
49+
```
50+
docker run --rm -p 8088:80 -e GRLC_SERVER_NAME=grlc.io -e GRLC_GITHUB_ACCESS_TOKEN=xxx -e DEBUG=true claria/grlc
51+
```
52+
4853
(You can omit the first two commands if you just copy [this file](docker-compose.default.yml) somehwere in your filesystem)
4954
If you use the supplied `docker-compose.default.yml` your grlc instance will be available at http://localhost:8001
5055

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
root_dir = root.replace(grlc_base_dir, '')
1414
data_files = os.path.join(root_dir, '*')
1515
grlc_data.append(data_files)
16-
grlc_version = '1.2.0'
16+
grlc_version = '1.2.1'
1717

1818
with codecs.open('requirements.txt', mode='r') as f:
1919
install_requires = f.read().splitlines()

src/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.2.0'
1+
__version__ = '1.2.1'

0 commit comments

Comments
 (0)