https://github.com/imrein/docker-compose-files
Small collection of docker-compose files I may or may not use.
https://github.com/imrein/docker-compose-files
container docker docker-compose homelab
Last synced: 2 months ago
JSON representation
Small collection of docker-compose files I may or may not use.
- Host: GitHub
- URL: https://github.com/imrein/docker-compose-files
- Owner: imrein
- Created: 2022-04-25T22:03:31.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-01-23T22:50:27.000Z (over 2 years ago)
- Last Synced: 2025-06-10T05:43:40.612Z (about 1 year ago)
- Topics: container, docker, docker-compose, homelab
- Homepage:
- Size: 68.4 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Compose files
A collection of some docker-compose files for local testing and learning purposes.
## Quick start example
1. Move inside desired directory:
```bash
cd networking/adguard
```
**Make sure to edit port mappings to your own needs.**
2. Create a `.env` file in the folder and provide the variables or just replace them inside the file.
3. Setup container using docker-compose:
```bash
docker-compose up -d
```
4. Check if docker container is running and volumes/networks are created:
```bash
docker ps
```
```bash
docker volume ls && docker network ls
```
## Troubleshooting
If there are any issues or the container is not starting, I would check the docker logs to see if there is any information there:
```bash
docker-compose logs -f
```