Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ar10dev/code
A code environment based on Ubuntu and VSCode tunnels
https://github.com/ar10dev/code
code docker hacktoberfest tunnel ubuntu vscode zsh
Last synced: 5 days ago
JSON representation
A code environment based on Ubuntu and VSCode tunnels
- Host: GitHub
- URL: https://github.com/ar10dev/code
- Owner: AR10Dev
- License: mit
- Created: 2023-03-07T13:20:14.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-12-23T13:44:33.000Z (11 months ago)
- Last Synced: 2024-04-20T08:52:08.961Z (7 months ago)
- Topics: code, docker, hacktoberfest, tunnel, ubuntu, vscode, zsh
- Language: Dockerfile
- Homepage:
- Size: 45.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# code
A code environment based on Ubuntu and VSCode tunnels.Here is the `docker-compose.yml` that powers the whole setup.
```yaml
version: '3'
services:
code:
image: ghcr.io/ar10dev/code:latest
container_name: code
ports:
- 7000:8000
- 3000
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /home/ubuntu/projects:/home/code/workspace
# VSCode Cli Data
- /home/ubuntu/.vscode-data:/home/code/.vscode-data
# Git Config
- /home/ubuntu/.gitconfig:/home/code/.gitconfig
```