Update README.md
Some checks failed
HAProxy Manager Build and Push / Build-and-Push (push) Failing after 37s
Some checks failed
HAProxy Manager Build and Push / Build-and-Push (push) Failing after 37s
This commit is contained in:
parent
a886013421
commit
21e0e99796
34
.gitea/workflows/build-push.yaml
Normal file
34
.gitea/workflows/build-push.yaml
Normal file
@ -0,0 +1,34 @@
|
||||
name: HAProxy Manager Build and Push
|
||||
run-name: ${{ gitea.actor }} pushed a change to main
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
Build-and-Push:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v3
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: https://github.com/docker/setup-buildx-action@v3
|
||||
|
||||
- name: Login to Gitea
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
registry: repo.anhonesthost.net
|
||||
username: ${{ secrets.CI_USER }}
|
||||
password: ${{ secrets.CI_TOKEN }}
|
||||
|
||||
- name: Build Image
|
||||
uses: docker/build-push-action@v6
|
||||
with:
|
||||
platforms: linux/amd64
|
||||
push: true
|
||||
tags: |
|
||||
repo.anhonesthost.net/jknapp/haproxy-manager-base:latest
|
@ -2,6 +2,11 @@
|
||||
|
||||
A Flask-based API service for managing HAProxy configurations, domains, and SSL certificates.
|
||||
|
||||
To run the container:
|
||||
```bash
|
||||
docker run -d -p 80:80 -p 443:443 -p 8000:8000 -v lets-encrypt:/etc/letsencrypt -v haproxy:/etc/haproxy --name haproxy-manager repo.anhonesthost.net/jknapp/haproxy-manager-base:latest
|
||||
```
|
||||
|
||||
## API Endpoints
|
||||
|
||||
### Health Check
|
||||
|
Loading…
x
Reference in New Issue
Block a user