ray/docker
2021-06-29 10:12:47 -07:00
..
autoscaler [Docs] READmes for DockerHub (#11350) 2020-10-16 15:46:13 -07:00
base-deps [docker] Updated GPU Dockerfiles to CUDA 11.2 (#16269) 2021-06-07 16:15:19 -07:00
development [docker] Fix docker 'development' build failure (#13289) 2021-02-25 14:57:30 -08:00
examples Fix examples Dockerfile (#10908) 2020-09-19 11:05:30 -07:00
ray [docker] Support non-root container (#11407) 2020-11-12 08:41:50 -08:00
ray-deps [k8s] Refactored k8s operator to use kopf for controller logic (#15787) 2021-06-01 12:00:55 -07:00
ray-ml [Docker] Fix torch GPU install on Ray Docker images (#15473) 2021-04-26 16:22:25 -07:00
ray-nest-container [Core] start worker in container (#16671) 2021-06-29 10:12:47 -07:00
fix-docker-latest.sh [docker] Make Docker Build More Human Friendly (#15543) 2021-05-05 11:22:17 -07:00
README.md [CI] Fix-Up Docker Build (Use Python) (#11139) 2020-10-12 14:22:51 -07:00

Overview of how the ray images are built:

Images without a "-cpu" or "-gpu" tag are built on ubuntu/focal. They are just an alias for -cpu (e.g. ray:latest is the same as ray:latest-cpu).

ubuntu/focal
└── base-deps:cpu
    └── ray-deps:cpu
        └── ray:cpu
            └── ray-ml:cpu

nvidia/cuda
└── base-deps:gpu
    └── ray-deps:gpu
        └── ray:gpu
            └── ray-ml:gpu