Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/22.01.0 #238

Merged
merged 7 commits into from
Jan 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .env.demo

This file was deleted.

2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ COPY opt/prepare-aiidalab.sh /opt/
COPY my_init.d/prepare-aiidalab.sh /etc/my_init.d/80_prepare-aiidalab.sh

# Install the aiidalab-home app.
ARG aiidalab_home_version=v21.10.0
ARG aiidalab_home_version=v22.01.0
RUN git clone https://github.com/aiidalab/aiidalab-home && cd aiidalab-home && git checkout $aiidalab_home_version
RUN chmod 774 aiidalab-home

Expand Down
61 changes: 20 additions & 41 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,58 +1,37 @@
# Docker Stack for AiiDAlab

This repo contains the Docker file used in the [AiiDAlab](https://www.materialscloud.org/aiidalab).
This repository contains the Dockerfile for the official AiiDAlab docker images.

Docker images are available from Dockerhub via `docker pull aiidalab/aiidalab-docker-stack:latest`.
See [aiidalab/aiidalab-docker-stack](https://hub.docker.com/repository/docker/aiidalab/aiidalab-docker-stack) for a list of available tags.
Docker images are automatically built and pushed to Docker Hub at https://hub.docker.com/r/aiidalab/aiidalab-docker-stack with the following tags:

# Documentation
- `latest` – the latest tagged release.
- `<version>` – a specific tagged release, example: `21.12.0`.
- `master`/`develop` – the latest commit on the corresponding branches with the same name.

## Local deployment
## Get started

To launch a local instance of AiiDAlab, first clone this repository, e.g., with
```console
git clone https://github.com/aiidalab/aiidalab-docker-stack.git
cd aiidalab-docker-stack
```
and then install the Python requirements needed to run the manage script:
```
pip install -r requirements-manage.txt
```
### Local deployment

Before starting AiiDAlab, it is recommended to configure it for your needs.
For example, to mount the AiiDAlab home directory on your local host at `~/aiidalab` instead of using a Docker volume, execute:
```console
./manage.py configure --home-dir=~/aiidalab
```
This creates a `.env` file in the local directory that stores the provided settings.
To run AiiDAlab on your own workstation or laptop you can either
- run the image directly with: `docker run aiidalab-docker-stack -p 8888:8888`, or
- _(recommended)_ use the `aiidalab-launch` tool which is a thin docker wrapper.

You can then launch your local AiiDAlab deployment with:
The `aiidalab-launch` tool provides a convenient and robust method of both launching and managing one or multiple AiiDAlab instances on your computer.
To use it, simply install it via pip
```console
$ ./manage.py up
pip install aiidalab-launch
```
You should see output similar to this:
```
Starting AiiDAlab (this can take multiple minutes) ...
Open this link in the browser to enter AiiDAlab:
http://localhost:8888/?token=be20d9872d...
```

Note: AiiDAlab will keep running until you shutdown or restart the host computer, in which case, you will have to run the `up` command again to restart AiiDAlab.

Please see `./manage.py --help` for a full list of available commands.

## Development deployment

For a local development deployment, run
and then start AiiDAlab with
```console
./manage.py --develop up
aiidalab-launch start
```
Note: AiiDAlab will keep running until you explicitly stop it or shutdown/restart your computer.
In that case, you will have to run the `aiidalab-launch start` command again to restart AiiDAlab.

This will build and start an image where the `aiidalab` package, the `aiidalab-widgets-base` library, and the `aiidalab-home` app are installed with their latest development versions instead of their latest release versions.
Please see `aiidalab-launch --help` for a full list of available commands and options.

## Other deployments
### Cloud and other deployments

The `manage.py` script uses docker-compose to manage the local AiiDAlab deployment.
Please see the [AiiDAlab documentation](https://aiidalab.readthedocs.io/) for information on how to use and deploy AiiDAlab docker images in alternative ways.

## Citation
Expand All @@ -62,7 +41,7 @@ Users of AiiDAlab are kindly asked to cite the following publication in their ow
A. V. Yakutovich et al., Comp. Mat. Sci. 188, 110165 (2021).
[DOI:10.1016/j.commatsci.2020.110165](https://doi.org/10.1016/j.commatsci.2020.110165)

# Acknowledgements
## Acknowledgements

This work is supported by the [MARVEL National Centre for Competency in Research](<http://nccr-marvel.ch>)
funded by the [Swiss National Science Foundation](<http://www.snf.ch/en>), as well as by the [MaX
Expand Down
12 changes: 0 additions & 12 deletions docker-compose.develop.yml

This file was deleted.

17 changes: 0 additions & 17 deletions docker-compose.yml

This file was deleted.

Loading