https://github.com/gnokoheat/docker-collection
Collection of dockerfile and docker-compose files
https://github.com/gnokoheat/docker-collection
docker docker-compose docker-compose-template docker-container
Last synced: 5 months ago
JSON representation
Collection of dockerfile and docker-compose files
- Host: GitHub
- URL: https://github.com/gnokoheat/docker-collection
- Owner: gnokoheat
- License: mit
- Created: 2021-03-01T16:49:26.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2025-01-31T03:19:23.000Z (over 1 year ago)
- Last Synced: 2025-01-31T04:20:37.884Z (over 1 year ago)
- Topics: docker, docker-compose, docker-compose-template, docker-container
- Language: Shell
- Homepage:
- Size: 870 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# docker-collection
Collection of dockerfile and docker-compose files
## install docker engine
```
curl -fsSL https://get.docker.com -o get-docker.sh
sudo sh get-docker.sh
sudo usermod -aG docker $(whoami)
```
## install docker compose
```
sudo apt install docker-compose
```