diff --git a/README.md b/README.md index bed63c3..487df18 100644 --- a/README.md +++ b/README.md @@ -1 +1,26 @@ ![Docker build pipeline badge](https://git.lucaasmth.me/lucas.mathieu/flingue-website/actions/workflows/docker-build.yml/badge.svg) + +# Flingue Website + +## Description + +Small static website served by an Nginx container. + +## How to run + +### With docker run + +```bash +docker run -p 8080:80 git.lucaasmth.me/lucas.mathieu/flingue-website:latest +``` + +### With docker compose + +```yaml +services: + flingue-website: + image: git.lucaasmth.me/lucas.mathieu/flingue-website:latest + ports: + - 8080:80 +``` +