Skip to content

Commit

Permalink
Fixed dislib_cmd
Browse files Browse the repository at this point in the history
  • Loading branch information
Javier Alvarez committed Oct 30, 2019
1 parent b5a74a0 commit a3731bb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.4.2] - 2019-10-23
## [0.4.3] - 2019-10-23

### Fixed
- Fixed an import error when using dislib executable without having
Expand Down Expand Up @@ -101,7 +101,7 @@ process.

### Removed

[Unreleased]: https://github.com/bsc-wdc/dislib/compare/v0.4.1...HEAD
[Unreleased]: https://github.com/bsc-wdc/dislib/compare/v0.4.3...HEAD
[0.4.1]: https://github.com/bsc-wdc/dislib/compare/v0.4.0...v0.4.1
[0.4.0]: https://github.com/bsc-wdc/dislib/compare/v0.3.0...v0.4.0
[0.3.0]: https://github.com/bsc-wdc/dislib/compare/v0.2.0...v0.3.0
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.4.2
0.4.3
4 changes: 2 additions & 2 deletions bin/dislib_cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ def _start_daemon(working_dir: str = "", restart: bool = True):
"patient.")

mounts = _get_mounts(user_working_dir=working_dir)

ports = {'8888/tcp': 8888} # required for jupyter notebooks
m = client.containers.run(image=image_name, name=master_name,
mounts=mounts, detach=True)
mounts=mounts, detach=True, ports=ports)

_generate_resources_cfg(ips=['localhost'])
_generate_project_cfg(ips=['localhost'])
Expand Down

0 comments on commit a3731bb

Please sign in to comment.