https://github.com/zz-jason/zzdev
https://github.com/zz-jason/zzdev
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/zz-jason/zzdev
- Owner: zz-jason
- Created: 2022-07-02T16:28:23.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-10-12T11:13:17.000Z (over 1 year ago)
- Last Synced: 2025-04-13T00:56:41.803Z (about 2 months ago)
- Language: Vim Script
- Size: 34.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# zzdev: zz-jason's Development Environment
## What's in there
- language config for cpp/java
- the basic zsh config
- the vim config
- the tmux config## How to get the image and start a container
Build the docker image:
```sh
IMAGE_NAME="zzjason/zzdev/ubuntu:20.04"
CONTAINER_NAME="zzdev-ubuntu-20.04"# Build from souce
docker build -t $IMAGE_NAME .
```Start a container with the above image:
```sh
# Start a container and mount the impala source to the docker
docker run -it -name ${CONTAINER_NAME} $IMAGE_NAME /usr/bin/zsh
```