A set of ready-to-use Docker images for development workspaces.
These well-tested images are designed to provide a consistent and isolated environment for developers, making it easier to set up development environments across different projects. ๐
Pull requests are welcome! If you have any suggestions or improvements, please feel free to contribute.
{
"name": "<container-name>",
"image": "katorlys/workspace-<image-name>",
"postStartCommand": "",
}docker run -it -v ./workspace:/workspace katorlys/workspace-<image-name>or
docker run -itd --name <container-name> -v ./workspace:/workspace katorlys/workspace-<image-name>
docker exec -it <container-name> /bin/bashservices:
<container-name>:
image: katorlys/workspace-<image-name>
container_name: <container-name>
restart: unless-stopped
volumes:
- ./workspace:/workspaceand then
docker compose up -d
docker compose exec <container-name> /bin/bashdocker build --no-cache --platform linux/amd64 -t katorlys/workspace-<image-name>:<current-date> <folder-path>docker tag katorlys/workspace-<image-name>:<current-date> katorlys/workspace-<image-name>:latest
docker push katorlys/workspace-<image-name>:<current-date>
docker push katorlys/workspace-<image-name>:latestCopyright ยฉ 2024-present Katorly Lab