Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/modem7/docker-devenv
Docker Dev Environments
https://github.com/modem7/docker-devenv
dev docker environments
Last synced: 1 day ago
JSON representation
Docker Dev Environments
- Host: GitHub
- URL: https://github.com/modem7/docker-devenv
- Owner: modem7
- License: mit
- Created: 2022-10-28T21:09:09.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-11-30T16:09:11.000Z (11 months ago)
- Last Synced: 2023-11-30T17:41:55.479Z (11 months ago)
- Topics: dev, docker, environments
- Language: Dockerfile
- Homepage:
- Size: 47.9 KB
- Stars: 5
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Docker Dev Environments
[![GitHub latest commit](https://badgen.net/github/last-commit/modem7/docker-devenv)](https://GitHub.com/modem7/docker-devenv/commit/)[!["Buy Me A Coffee"](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/modem7)
---
# Purpose
This repo is to quickly create ephemeral Docker based Development environments with everything that you may require.If you need a customised environment, please fork this repo, customise as you wish and update the relevant script locations to your repo.
---
# Requirements
- Docker ([install instructions](https://docs.docker.com/engine/install/))
- Curl (`apt-get install curl`)
- JQ (`apt-get install jq`)---
# Environments
- [Alpine](https://github.com/modem7/docker-devenv/blob/master/Environments/Alpine/README.md)
- [Alpine_Network_Debug](https://github.com/modem7/docker-devenv/blob/master/Environments/Alpine_Network_Debug/README.md)
- [Alpine_Python](https://github.com/modem7/docker-devenv/blob/master/Environments/Alpine_Python/README.md)
- [Debian](https://github.com/modem7/docker-devenv/blob/master/Environments/Debian/README.md)
- [Ubuntu](https://github.com/modem7/docker-devenv/blob/master/Environments/Ubuntu/README.md)---
# Usage
## Download and run script:
In your console, run the following commands:Note: This has only been made for use in Debian/Ubuntu based systems currently.
curl:
```
curl -s https://raw.githubusercontent.com/modem7/docker-devenv/master/devmenu.sh > /tmp/devmenu.sh && bash /tmp/devmenu.sh
```If you use SSH to your Docker server via Windows Terminal/Powershell:
```
ssh -t user@ip "curl -sk https://raw.githubusercontent.com/modem7/docker-devenv/master/devmenu.sh > /tmp/devmenu.sh && bash /tmp/devmenu.sh"
```Choose the appropriate option to generate your dev environment.
---
# Screenshot
![image](https://user-images.githubusercontent.com/4349962/198807913-eefcc8ae-8e20-42a3-8879-44adb4795bcf.png)