A web application developed in Golang for countdown time
2.6K
A simple stateless web application written in Golang that simulates a countdown timer. The frontend (HTML/JS/CSS) is embedded directly in the Go binary, making deployment easy.
Install Docker: https://docs.docker.com/get-started/get-docker/
Run the container
docker run -d -p 8080:8080 --rm --name countdown aeciopires/countdown:1.0.0
Access the application at http://localhost:8080.

You can change the default port using an environment variable.
docker run -p 3000:3000 -e PORT=3000 --rm --name countdown aeciopires/countdown:1.0.0
Access the application at http://localhost:3000.
Install Golang (1.25+): https://go.dev/doc/install
Run the application:
cd app
go mod init countdown
go run main.go
Access the application at http://localhost:8080.
Requirements:
Run the command.
cd app
make image
Aécio dos Santos Pires
https://linktr.ee/aeciopires
GPL-3.0 2025 Aécio dos Santos Pires
Content type
Image
Digest
sha256:32d1b0101…
Size
6.3 MB
Last updated
9 months ago
docker pull aeciopires/countdown