mirror of
https://github.com/EpicMorg/docker-scripts.git
synced 2024-12-26 14:45:42 +03:00
264 lines
9.3 KiB
YAML
264 lines
9.3 KiB
YAML
name: develop
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- '*'
|
|
tags:
|
|
- '*'
|
|
push:
|
|
branches:
|
|
- 'develop'
|
|
|
|
jobs:
|
|
build-forked-fixed-independed-images:
|
|
name: Forked and fixed independed images
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Log into registry
|
|
run: echo "${{ secrets.DOCKER_SERVER_KEY }}" | docker login -u "${{ secrets.DOCKER_SERVER_LOGIN }}" --password-stdin
|
|
|
|
##########
|
|
|
|
- name: Build Zabbix Agent
|
|
run: docker build --compress -t epicmorg/zabbix-agent:latest zabbix/agent
|
|
|
|
- name: Build Zabbix Java Gateway
|
|
run: docker build --compress -t epicmorg/zabbix-java-gateway:latest zabbix/java-gateway
|
|
|
|
- name: Build Zabbix Server with MySQL
|
|
run: docker build --compress -t epicmorg/zabbix-server-mysql:latest zabbix/server
|
|
|
|
- name: Build Zabbix Web Apache2 with MySQL
|
|
run: docker build --compress -t epicmorg/zabbix-web-apache-mysql:latest zabbix/web
|
|
|
|
- name: Build Zabbix Proxy SQLite3
|
|
run: docker build --compress -t epicmorg/zabbix-proxy-sqlite3:latest zabbix/proxy
|
|
|
|
- name: Build NextCloud (latest)
|
|
run: docker build --compress -t epicmorg/nextcloud:latest nextcloud/latest
|
|
|
|
- name: Build TeamCity Server (latest)
|
|
run: docker build --compress -t epicmorg/teamcity-server:latest teamcity/server
|
|
|
|
- name: Build NextCloud (14)
|
|
run: docker build --compress -t epicmorg/nextcloud:14 nextcloud/14
|
|
|
|
- name: Build NextCloud (15)
|
|
run: docker build --compress -t epicmorg/nextcloud:15 nextcloud/15
|
|
|
|
- name: Build NextCloud (16)
|
|
run: docker build --compress -t epicmorg/nextcloud:16 nextcloud/16
|
|
|
|
- name: Build NextCloud (17)
|
|
run: docker build --compress -t epicmorg/nextcloud:17 nextcloud/17
|
|
|
|
- name: Build NextCloud (18)
|
|
run: docker build --compress -t epicmorg/nextcloud:18 nextcloud/18
|
|
|
|
- name: Build NextCloud (19)
|
|
run: docker build --compress -t epicmorg/nextcloud:19 nextcloud/19
|
|
|
|
- name: Build NextCloud (20)
|
|
run: docker build --compress -t epicmorg/nextcloud:20 nextcloud/20
|
|
|
|
######################################################################################################################################################
|
|
|
|
#########################################
|
|
#### All images
|
|
#########################################
|
|
# - name: Build Template
|
|
# run: docker build --compress -t user/repo:tag path/to/folder/contains/dockerfile
|
|
|
|
build-all-iamges:
|
|
name: All images
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Log into registry
|
|
run: echo "${{ secrets.DOCKER_SERVER_KEY }}" | docker login -u "${{ secrets.DOCKER_SERVER_LOGIN }}" --password-stdin
|
|
|
|
##########
|
|
|
|
- name: Build Base Production
|
|
run: docker build --compress -t epicmorg/prod:latest epicmorg/prod/main
|
|
|
|
- name: Build Base Production + JDK 6
|
|
run: docker build --compress -t epicmorg/prod:jdk6 epicmorg/prod/jdk6
|
|
|
|
- name: Build Base Production + JDK 7
|
|
run: docker build --compress -t epicmorg/prod:jdk7 epicmorg/prod/jdk7
|
|
|
|
- name: Build Base Production + JDK 8
|
|
run: docker build --compress -t epicmorg/prod:jdk8 epicmorg/prod/jdk8
|
|
|
|
- name: Build Base Production + JDK 11
|
|
run: docker build --compress -t epicmorg/prod:jdk11 epicmorg/prod/jdk11
|
|
|
|
##########
|
|
|
|
- name: Build Base Edge
|
|
run: docker build --compress -t epicmorg/edge:latest epicmorg/edge/main
|
|
|
|
- name: Build Base Edge + JDK 6
|
|
run: docker build --compress -t epicmorg/edge:jdk6 epicmorg/edge/jdk6
|
|
|
|
- name: Build Base Edge + JDK 7
|
|
run: docker build --compress -t epicmorg/edge:jdk7 epicmorg/edge/jdk7
|
|
|
|
- name: Build Base Edge + JDK 8
|
|
run: docker build --compress -t epicmorg/edge:jdk8 epicmorg/edge/jdk8
|
|
|
|
- name: Build Base Edge + JDK 11
|
|
run: docker build --compress -t epicmorg/edge:jdk11 epicmorg/edge/jdk11
|
|
|
|
##########
|
|
|
|
- name: Build Base Develop
|
|
run: docker build --compress -t epicmorg/devel:latest epicmorg/devel/main
|
|
|
|
- name: Build Base Develop + JDK 6
|
|
run: docker build --compress -t epicmorg/devel:jdk6 epicmorg/devel/jdk6
|
|
|
|
- name: Build Base Develop + JDK 7
|
|
run: docker build --compress -t epicmorg/devel:jdk7 epicmorg/devel/jdk7
|
|
|
|
- name: Build Base Develop + JDK 8
|
|
run: docker build --compress -t epicmorg/devel:jdk8 epicmorg/devel/jdk8
|
|
|
|
- name: Build Base Develop + JDK 11
|
|
run: docker build --compress -t epicmorg/devel:jdk11 epicmorg/devel/jdk11
|
|
|
|
##########
|
|
|
|
- name: Build MatterMost (latest)
|
|
run: docker build --compress -t epicmorg/mattermost-enterprise-edition:latest mattermost/latest
|
|
|
|
- name: Build TeamCity Agent
|
|
run: docker build --compress -t epicmorg/teamcity-agent:latest teamcity/agent
|
|
|
|
- name: Build NGinx (latest)
|
|
run: docker build --compress -t epicmorg/balancer:latest balancer/latest
|
|
|
|
- name: Build NGinx + PHP7.4
|
|
run: docker build --compress -t epicmorg/balancer:php balancer/php
|
|
|
|
- name: Build NGinx + RTMP-HLS
|
|
run: docker build --compress -t epicmorg/balancer:rtmp-hls balancer/rtmp-hls
|
|
|
|
- name: PHP (latest)
|
|
run: docker build --compress -t epicmorg/php:latest php/latest
|
|
|
|
- name: PHP 7.4
|
|
run: docker build --compress -t epicmorg/php:php7.4 php/php7.4
|
|
|
|
- name: PHP 7.3
|
|
run: docker build --compress -t epicmorg/php:php7.3 php/php7.3
|
|
|
|
- name: PHP 7.2
|
|
run: docker build --compress -t epicmorg/php:php7.2 php/php7.2
|
|
|
|
- name: Build Apache (latest)
|
|
run: docker build --compress -t epicmorg/websites:latest websites/latest
|
|
|
|
- name: Build Apache + PHP7.4
|
|
run: docker build --compress -t epicmorg/websites:php7.4 websites/php7.4
|
|
|
|
- name: Build Apache + PHP7.3
|
|
run: docker build --compress -t epicmorg/websites:php7.3 websites/php7.3
|
|
|
|
- name: Build Apache + PHP7.2
|
|
run: docker build --compress -t epicmorg/websites:php7.2 websites/php7.2
|
|
|
|
- name: Build Testrail (always latest)
|
|
run: docker build --compress -t epicmorg/testrail:latest testrail/latest
|
|
|
|
- name: Build PostgresSQL (latest)
|
|
run: docker build --compress -t epicmorg/postgres:latest postgres/latest
|
|
|
|
##########
|
|
|
|
- name: Build Bitbucket + JDK 8 (latest)
|
|
run: docker build --compress -t epicmorg/bitbucket:latest atlassian/bitbucket/latest
|
|
|
|
- name: Build Bitbucket + JDK 11 (latest-jdk11)
|
|
run: docker build --compress -t epicmorg/bitbucket:latest-jdk11 -f atlassian/bitbucket/latest/Dockerfile.jdk11 atlassian/bitbucket/latest
|
|
|
|
- name: Build Confluence + JDK 8 (latest)
|
|
run: docker build --compress -t epicmorg/confluence:latest atlassian/confluence/latest
|
|
|
|
- name: Build Confluence + JDK 11 (latest-jdk11)
|
|
run: docker build --compress -t epicmorg/confluence:latest-jdk11 -f atlassian/confluence/latest/Dockerfile.jdk11 atlassian/confluence/latest
|
|
|
|
- name: Build Jira + JDK 8 (latest)
|
|
run: docker build --compress -t epicmorg/jira:latest atlassian/jira/latest
|
|
|
|
- name: Build Jira + JDK 11 (latest-jdk11)
|
|
run: docker build --compress -t epicmorg/jira:latest-jdk11 -f atlassian/jira/latest/Dockerfile.jdk11 atlassian/jira/latest
|
|
|
|
- name: Build Fisheye + Crucible + JDK 8 (latest)
|
|
run: docker build --compress -t epicmorg/fisheye-crucible:latest atlassian/fisheye-crucible/latest
|
|
|
|
- name: Build Postgres (latest)
|
|
run: docker build --compress -t epicmorg/postgres:latest postgres/latest
|
|
|
|
##########
|
|
|
|
- name: Build qBitTorrent (latest)
|
|
run: docker build --compress -t epicmorg/qbittorrent:latest qbittorrent/latest
|
|
|
|
- name: Build qBitTorrent (unstable)
|
|
run: docker build --compress -t epicmorg/qbittorrent:unstable qbittorrent/latest
|
|
|
|
- name: Build qBitTorrent (stable)
|
|
run: docker build --compress -t epicmorg/qbittorrent:stable qbittorrent/stable
|
|
|
|
#########################################
|
|
#### secondary images and backports
|
|
#########################################
|
|
|
|
- name: Build vk2discord (latest)
|
|
run: docker build --compress -t epicmorg/vk2discord:latest vk2discord/latest
|
|
|
|
- name: Build PostgresSQL (8.2)
|
|
run: docker build --compress -t epicmorg/postgres:8.2 postgres/8.2
|
|
|
|
- name: Build PostgresSQL (8.3)
|
|
run: docker build --compress -t epicmorg/postgres:8.3 postgres/8.3
|
|
|
|
- name: Build PostgresSQL (8.4)
|
|
run: docker build --compress -t epicmorg/postgres:8.4 postgres/8.4
|
|
|
|
- name: Build PostgresSQL (9.0)
|
|
run: docker build --compress -t epicmorg/postgres:9.0 postgres/9.0
|
|
|
|
- name: Build PostgresSQL (9.1)
|
|
run: docker build --compress -t epicmorg/postgres:9.1 postgres/9.1
|
|
|
|
- name: Build PostgresSQL (9.2)
|
|
run: docker build --compress -t epicmorg/postgres:9.2 postgres/9.2
|
|
|
|
- name: Build PostgresSQL (9.3)
|
|
run: docker build --compress -t epicmorg/postgres:9.3 postgres/9.3
|
|
|
|
- name: Build PostgresSQL (9.4)
|
|
run: docker build --compress -t epicmorg/postgres:9.4 postgres/9.4
|
|
|
|
- name: Build PostgresSQL (9.5)
|
|
run: docker build --compress -t epicmorg/postgres:9.5 postgres/9.5
|
|
|
|
- name: Build PostgresSQL (9.6)
|
|
run: docker build --compress -t epicmorg/postgres:9.6 postgres/9.6
|
|
|
|
- name: Build PostgresSQL (10)
|
|
run: docker build --compress -t epicmorg/postgres:10 postgres/10
|
|
|
|
- name: Build PostgresSQL (11)
|
|
run: docker build --compress -t epicmorg/postgres:11 postgres/11
|
|
|
|
- name: Build PostgresSQL (12)
|
|
run: docker build --compress -t epicmorg/postgres:12 postgres/12
|