An open API service indexing awesome lists of open source software.

https://github.com/eggplants/composefiles

My Useful Docker Compose files
https://github.com/eggplants/composefiles

Last synced: 6 months ago
JSON representation

My Useful Docker Compose files

Awesome Lists containing this project

README

          

# composefiles

My Useful Docker Compose files

## How to install Docker Engine on Debian

```bash
sudo apt update
sudo apt upgrade -y
curl -fsSL https://get.docker.com -o get-docker.sh
DRY_RUN=1 sh ./get-docker.sh # check executing commands
DEBIAN_FRONTEND=noninteractive sudo sh get-docker.sh
sudo usermod -aG docker $USER
newgrp docker
```