docs: add run instructions in README
All checks were successful
Build and Push Docker Image / docker-build (push) Successful in 11s
All checks were successful
Build and Push Docker Image / docker-build (push) Successful in 11s
This commit is contained in:
25
README.md
25
README.md
@@ -1 +1,26 @@
|
||||

|
||||
|
||||
# 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
|
||||
```
|
||||
|
||||
|
||||
Reference in New Issue
Block a user