https://github.com/fernando24164/breakfast_docker
Just another virtual environment to learning and testing Docker and Docker Compose
https://github.com/fernando24164/breakfast_docker
Last synced: 3 months ago
JSON representation
Just another virtual environment to learning and testing Docker and Docker Compose
- Host: GitHub
- URL: https://github.com/fernando24164/breakfast_docker
- Owner: fernando24164
- Created: 2018-01-31T11:20:38.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-02-02T11:00:27.000Z (over 7 years ago)
- Last Synced: 2025-01-28T02:44:21.103Z (5 months ago)
- Language: Go
- Size: 8.79 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Breakfast_docker
Just another virtual environment to learning and testing Docker and Docker Compose## How to start?
To launch the environment you should check to have a vagrant provider e.g Virtualbox.
```shell
vagrant up
```Then you can connecto to virtual machine.
```shell
vagrant ssh
```The machine has Go, Docker and Docker-compose. To launch the Docker-compose.
```shell
docker-compose up
```You will see the logs of the two containers to stop the process Ctrl+C. You maybe want to clean your memory so you can remove your containers.
```shell
docker ps -a
docker rm $(docker ps -aq)
```