This project specifies a Docker container that runs the Canvas LMS.
Since it's intended for development use, all services run inside a single container based on Ubuntu 16.04
To run the container directly using the docker CLI, run:
docker run --name canvas -p 3000:3000 -d cegd/canvas
To run this container in your project using docker-compose, you can use the following config:
...
services:
canvas:
image: cegd/canvas:latest
ports:
- 3000:3000
...
Content type
Image
Digest
Size
2.9 GB
Last updated
almost 6 years ago
docker pull cegd/canvas