mirror of
https://github.com/BluemediaGER/nginx-live.git
synced 2024-11-22 17:55:29 +01:00
Compare commits
2 commits
709530a2b9
...
558f984f43
Author | SHA1 | Date | |
---|---|---|---|
Oliver Traber | 558f984f43 | ||
Oliver Traber | 664925d246 |
19
.drone.yml
19
.drone.yml
|
@ -1,19 +0,0 @@
|
|||
kind: pipeline
|
||||
type: docker
|
||||
name: nginx-live
|
||||
|
||||
steps:
|
||||
- name: docker
|
||||
image: plugins/docker
|
||||
settings:
|
||||
pull_image: true
|
||||
no_cache: true
|
||||
repo: git.bluemedia.dev/bluemedia/nginx-live
|
||||
tags:
|
||||
- latest
|
||||
purge: true
|
||||
registry: git.bluemedia.dev
|
||||
username:
|
||||
from_secret: docker_username
|
||||
password:
|
||||
from_secret: docker_password
|
25
.woodpecker/docker.yaml
Normal file
25
.woodpecker/docker.yaml
Normal file
|
@ -0,0 +1,25 @@
|
|||
steps:
|
||||
docker:
|
||||
image: woodpeckerci/plugin-docker-buildx
|
||||
secrets: [docker_username, docker_password]
|
||||
settings:
|
||||
pull_image: true
|
||||
registry: git.bluemedia.dev
|
||||
repo: git.bluemedia.dev/bluemedia/nginx-live
|
||||
platforms: linux/amd64,linux/arm/v6,linux/arm64/v8
|
||||
tag: latest
|
||||
|
||||
notify:
|
||||
image: deblan/woodpecker-email
|
||||
settings:
|
||||
from.address:
|
||||
from_secret: smtp_notify_email
|
||||
from.name: Woodpecker CI
|
||||
host:
|
||||
from_secret: smtp_notify_host
|
||||
username:
|
||||
from_secret: smtp_notify_email
|
||||
password:
|
||||
from_secret: smtp_notify_password
|
||||
when:
|
||||
- status: [ failure ]
|
|
@ -1,5 +1,5 @@
|
|||
# Base Image used to create this Image
|
||||
FROM debian:bullseye-slim
|
||||
FROM bitnami/minideb:bullseye
|
||||
|
||||
# Maintainer
|
||||
LABEL maintainer="hi@bluemedia.dev"
|
||||
|
@ -11,12 +11,7 @@ ENV HLS_FRAGMENT_LENGTH 3
|
|||
ENV HLS_PLAYLIST_LENGTH 20
|
||||
|
||||
# Update and install packages
|
||||
RUN apt update -y && \
|
||||
apt upgrade -y && \
|
||||
apt autoremove -y && \
|
||||
apt install nginx libnginx-mod-rtmp -y && \
|
||||
apt clean && \
|
||||
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
||||
RUN install_packages nginx libnginx-mod-rtmp
|
||||
|
||||
# Create nginx user
|
||||
RUN useradd -s /bin/false nginx
|
||||
|
|
Loading…
Reference in a new issue