https://github.com/docker/welcome-to-docker
https://github.com/docker/welcome-to-docker
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/docker/welcome-to-docker
- Owner: docker
- Created: 2023-02-24T13:19:06.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2025-03-20T02:03:12.000Z (10 months ago)
- Last Synced: 2025-04-11T02:51:39.738Z (9 months ago)
- Language: JavaScript
- Size: 610 KB
- Stars: 586
- Watchers: 10
- Forks: 1,953
- Open Issues: 40
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Welcome to Docker
This is a repo for new users getting started with Docker.
You can try it out using the following command.
```
docker run -d -p 8088:80 --name welcome-to-docker docker/welcome-to-docker
```
And open `http://localhost:8088` in your browser.
# Building
Maintainers should see [MAINTAINERS.md](MAINTAINERS.md).
Build and run:
```
docker build -t welcome-to-docker .
docker run -d -p 8088:3000 --name welcome-to-docker welcome-to-docker
```
Open `http://localhost:8088` in your browser.