Compare commits
4 Commits
434ca8a4be
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 1f6b0b5ac8 | |||
| a2b2bb3b2f | |||
| 8c32c54b7f | |||
| 4f4802a529 |
@@ -7,14 +7,14 @@ on:
|
||||
|
||||
jobs:
|
||||
docker-build:
|
||||
runs-on: docker
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Set up variables
|
||||
run: |
|
||||
IMAGE="${{ secrets.GITEA_REGISTRY }}/${{ secrets.GITEA_USERNAME }}/flingue-website"
|
||||
IMAGE="${{ secrets.REGISTRY_URL }}/${{ secrets.REGISTRY_USERNAME }}/flingue-website"
|
||||
SHA_TAG=$(echo "${GITHUB_SHA}" | cut -c1-7)
|
||||
echo "IMAGE=$IMAGE" >> $GITHUB_ENV
|
||||
echo "SHA_TAG=$SHA_TAG" >> $GITHUB_ENV
|
||||
|
||||
26
README.md
Normal file
26
README.md
Normal file
@@ -0,0 +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