No description
  • JavaScript 76.8%
  • CSS 10.8%
  • HTML 6.2%
  • Dockerfile 6.2%
Find a file
rred c8cd4b31b2
Merge pull request #96 from docker/update-dockerfile
updating to address vulnerabilities
2025-07-24 11:03:11 -07:00
.github/workflows Add user config for automated merge. (#25) 2023-11-13 15:31:17 -05:00
public Update twitter icon 2023-10-24 10:47:12 -06:00
src Update twitter icon 2023-10-24 10:47:12 -06:00
.dockerignore Add docker ignore. 2023-03-07 14:27:05 -05:00
.gitignore Initial commit 2023-02-24 13:19:07 +00:00
Dockerfile Update Dockerfile to use node:22-alpine and latest serve 2025-07-23 11:55:53 -07:00
MAINTAINERS.md Update maintainers docs. (#23) 2023-11-13 13:21:05 -05:00
package-lock.json Remove unnecessary deps. 2023-03-02 14:58:13 -05:00
package.json Remove unnecessary deps. 2023-03-02 14:58:13 -05:00
README.md Add Dockefile. (#1) 2023-04-19 14:02:06 -04:00

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.

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.