Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rimutec/dev-container-java
An opinionated dev container for Java and VS Code
https://github.com/rimutec/dev-container-java
docker docker-compose java template-repository vscode
Last synced: about 13 hours ago
JSON representation
An opinionated dev container for Java and VS Code
- Host: GitHub
- URL: https://github.com/rimutec/dev-container-java
- Owner: RimuTec
- License: mit
- Created: 2022-01-22T02:57:28.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-09-03T07:58:50.000Z (over 1 year ago)
- Last Synced: 2024-01-17T00:16:35.995Z (about 1 year ago)
- Topics: docker, docker-compose, java, template-repository, vscode
- Language: Dockerfile
- Homepage:
- Size: 11.7 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dev-container-java
An opinionated dev container for Java and VS Code
## Prerequisites
To make best use of this repository, you need the following:
- Visual Studio Code
- VS Code extension "Remote Development"
- Docker Desktop (MacOS, Windows) or docker engine (Linux)
- git client (https://git-scm.com/downloads)## Getting Started
Once you have the container running, open a terminal inside VS Code and execute the following sequence of commands:
```bash
cd /src
javac HelloWorld.java
java HelloWorld
```All going to plan, this will output "Hello, world!" in the console.