Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ak9024/docker-ref
A repository for demonstrating Docker reference implementations and usage patterns.
https://github.com/ak9024/docker-ref
docker
Last synced: 12 days ago
JSON representation
A repository for demonstrating Docker reference implementations and usage patterns.
- Host: GitHub
- URL: https://github.com/ak9024/docker-ref
- Owner: ak9024
- Created: 2024-08-24T13:01:27.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-09-07T09:12:39.000Z (2 months ago)
- Last Synced: 2024-09-07T18:33:29.804Z (2 months ago)
- Topics: docker
- Language: TypeScript
- Homepage:
- Size: 205 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# docker-ref
A repository for demonstrating Docker reference implementations and usage patterns.
## Docker
- [x] Go (fiber)
- [x] Rust (actix)
- [ ] Node.js
- [ ] Ptyhon (fastAPI)
- [x] Next.js
- [ ] Deno
- [ ] Bun
- [ ] CRA vite
- [ ] Svelte
- [ ] PHP (Laravel)## Images
| REPOSITORY | TAG | SIZE |
|------------|----------|--------|
| rust-app | optimize | 84.5MB |
| rust-app | latest | 87.6MB |
| go-app | upx | 1.93MB |
| go-app | latest | 5.99MB |
| nextjs | latest | 674MB |## How to run?
Please go to `./apps/` then
```bash
# example docker build for go apps
docker build -t go-app:latest -f Dockerfile .
# check images
docker images
```## Contributing
Contributions are welcome! Please follow the guidelines below:
- Fork the repository.
- Create a new branch (git checkout -b feature-branch).
- Commit your changes (git commit -m 'Add new feature').
- Push the branch (git push origin feature-branch).
- Open a Pull Request.