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
- Host: GitHub
- URL: https://github.com/eggplants/composefiles
- Owner: eggplants
- Created: 2021-12-02T05:46:23.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2026-01-24T17:15:28.000Z (7 months ago)
- Last Synced: 2026-01-25T05:47:38.314Z (7 months ago)
- Homepage:
- Size: 10.7 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```