restructured repo + created README.md

This commit is contained in:
pika 2024-08-02 11:32:21 +02:00
parent 887dbcac22
commit 5fb6ad7282
6 changed files with 18 additions and 0 deletions

10
README.md Normal file
View file

@ -0,0 +1,10 @@
## docker-compose && .env files
---
This repo houses some usefull docker-compose files, ready to use. Get yourself your [nginx-webserver](./web/nginx/) or easily spin up a docker db with [mysql](./db/mysql/) or [mariadb](./db/mariadb/).
> [!TIP]
> You have to also change the content of the .env files for the databases. Just enter a password, a path to store the db files and a database name.
Anyways, this repo should only be there for hosting my docker compose files easily. Maybe at some point in my life, there will be my own docker containers under this organization (docker). But for now, this is only for templates and stuff ^^

View file

@ -0,0 +1,8 @@
services:
nginx-web:
restart: unless-stopped
image: nginx:alpine
ports:
- "8080:80"
volumes:
- ./path/to/webroot:/usr/share/nginx/html:ro