Skip to content

Releases: Year4000/PyCloud

PyCloud v1.0.4

24 Feb 03:17
Compare
Choose a tag to compare

With this release we now support Docker.

Docker

We support Docker and when you run this in a Docker container the script string bellow will let you select other Docker images to run.
The first line is the image you want to run and the rest of the file is a json config object for docker-py.
The limitation is that you must give the PyCloud container access to the docker socket /var/run/docker.sock.
Also note that the arg port in the json part is the port of your application.
PyCloud will create an ephemeral port and assign it with the port on your container.

docker run -v /var/run/docker.sock:/var/run/docker.sock year4000/pycloud:v1.0.4

Example Script String:

year4000/pycloud
{
    "port": 80
}

PyCloud v1.0.3

01 Sep 23:00
Compare
Choose a tag to compare

This update requires you to install PyCloud with pip.
The built in updater is removed in favor of pip.

This is how you should install PyCloud, replace v1.0.3 with a newer version if available.

$ pip3 install git+https://github.com/Year4000/PyCloud.git@v1.0.3

PyCloud v1.0.2

08 Jan 22:55
Compare
Choose a tag to compare

This release fixes Redis connections problems and name colisions

PyCloud v1.0.1

04 Sep 18:10
Compare
Choose a tag to compare

This release adds an auto updater and improved port bindings.

PyCloud v1.0.0 Alpha

26 Aug 18:52
Compare
Choose a tag to compare
PyCloud v1.0.0 Alpha Pre-release
Pre-release

This is the alpha version of PyCloud. The system currently works as far as our testing but there is work that still needs to be done before officially releasing it.