https://github.com/anuprshetty/dockerify
It's working on everyone's machine :)
https://github.com/anuprshetty/dockerify
devspace docker docker-compose helm-chart kubernetes
Last synced: 4 months ago
JSON representation
It's working on everyone's machine :)
- Host: GitHub
- URL: https://github.com/anuprshetty/dockerify
- Owner: anuprshetty
- Created: 2022-02-23T16:22:04.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-01-01T11:28:58.000Z (5 months ago)
- Last Synced: 2025-01-01T12:29:17.726Z (5 months ago)
- Topics: devspace, docker, docker-compose, helm-chart, kubernetes
- Language: Shell
- Homepage:
- Size: 351 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Dockerify
It's working on everyone's machine :)
## Projects
- noobie --> node.js, docker, docker compose
- web_visits --> node.js, redis, docker, docker compose
- portfolio --> react.js, docker, docker compose
- fibonacci --> react.js, node.js, redis, postgres, nginx, docker, docker compose, kubernetes, helm chart, devspace## Learnings from these projects
- Docker
- Docker Compose
- Kubernetes
- Helm Chart
- DevSpace - Build, test and debug applications directly inside Kubernetes## Notes
- Container-based application design encourages certain principles. One of these principles is that there should just be one process running in a container. That is to say, a Docker container should have just one program running inside it.
- docker exec vs docker attach:
- docker exec command executes commands in a new process in the container.
command: docker exec -it
- docker attach command attaches the standard IO streams of our terminal to the primary process of the running container.
command: docker attach
- containers in pods share the same unix/linux namespaces (localhost).