mirror of
https://github.com/EpicMorg/docker-scripts.git
synced 2025-01-12 06:37:55 +03:00
Merge branch 'develop'
This commit is contained in:
commit
a326280a78
266
.github/workflows/docker-develop.yml
vendored
266
.github/workflows/docker-develop.yml
vendored
@ -1,266 +0,0 @@
|
||||
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
|
||||
|
||||
- name: Build NextCloud (21)
|
||||
run: docker build --compress -t epicmorg/nextcloud:21 nextcloud/21
|
||||
|
||||
######################################################################################################################################################
|
||||
|
||||
#########################################
|
||||
#### 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
|
303
.github/workflows/docker-linux-develop.yml
vendored
Normal file
303
.github/workflows/docker-linux-develop.yml
vendored
Normal file
@ -0,0 +1,303 @@
|
||||
name: develop-linux
|
||||
|
||||
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 linux/zabbix/agent
|
||||
|
||||
- name: Build Zabbix Java Gateway
|
||||
run: docker build --compress -t epicmorg/zabbix-java-gateway:latest linux/zabbix/java-gateway
|
||||
|
||||
- name: Build Zabbix Server with MySQL
|
||||
run: docker build --compress -t epicmorg/zabbix-server-mysql:latest linux/zabbix/server
|
||||
|
||||
- name: Build Zabbix Web Apache2 with MySQL
|
||||
run: docker build --compress -t epicmorg/zabbix-web-apache-mysql:latest linux/zabbix/web
|
||||
|
||||
- name: Build Zabbix Proxy SQLite3
|
||||
run: docker build --compress -t epicmorg/zabbix-proxy-sqlite3:latest linux/zabbix/proxy
|
||||
|
||||
|
||||
- name: Build NextCloud (latest)
|
||||
run: docker build --compress -t epicmorg/nextcloud:latest linux/nextcloud/latest
|
||||
|
||||
- name: Build TeamCity Server (latest)
|
||||
run: docker build --compress -t epicmorg/teamcity-server:latest linux/teamcity/server
|
||||
|
||||
- name: Cleanup
|
||||
run: docker system prune --all --force --volumes
|
||||
|
||||
- name: Build NextCloud (14)
|
||||
run: docker build --compress -t epicmorg/nextcloud:14 linux/nextcloud/14
|
||||
|
||||
- name: Build NextCloud (15)
|
||||
run: docker build --compress -t epicmorg/nextcloud:15 linux/nextcloud/15
|
||||
|
||||
- name: Build NextCloud (16)
|
||||
run: docker build --compress -t epicmorg/nextcloud:16 linux/nextcloud/16
|
||||
|
||||
- name: Build NextCloud (17)
|
||||
run: docker build --compress -t epicmorg/nextcloud:17 linux/nextcloud/17
|
||||
|
||||
- name: Build NextCloud (18)
|
||||
run: docker build --compress -t epicmorg/nextcloud:18 linux/nextcloud/18
|
||||
|
||||
- name: Build NextCloud (19)
|
||||
run: docker build --compress -t epicmorg/nextcloud:19 linux/nextcloud/19
|
||||
|
||||
- name: Build NextCloud (20)
|
||||
run: docker build --compress -t epicmorg/nextcloud:20 linux/nextcloud/20
|
||||
|
||||
- name: Build NextCloud (21)
|
||||
run: docker build --compress -t epicmorg/nextcloud:21 linux/nextcloud/21
|
||||
|
||||
- name: Cleanup
|
||||
run: docker system prune --all --force --volumes
|
||||
|
||||
######################################################################################################################################################
|
||||
|
||||
#########################################
|
||||
#### 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 linux/epicmorg/prod/main
|
||||
|
||||
- name: Build Base Production + JDK 6
|
||||
run: docker build --compress -t epicmorg/prod:jdk6 linux/epicmorg/prod/jdk6
|
||||
|
||||
- name: Build Base Production + JDK 7
|
||||
run: docker build --compress -t epicmorg/prod:jdk7 linux/epicmorg/prod/jdk7
|
||||
|
||||
- name: Build Base Production + JDK 8
|
||||
run: docker build --compress -t epicmorg/prod:jdk8 linux/epicmorg/prod/jdk8
|
||||
|
||||
- name: Build Base Production + JDK 11
|
||||
run: docker build --compress -t epicmorg/prod:jdk11 linux/epicmorg/prod/jdk11
|
||||
|
||||
- name: Cleanup
|
||||
run: docker system prune --all --force --volumes
|
||||
|
||||
##########
|
||||
|
||||
- name: Build Base Edge
|
||||
run: docker build --compress -t epicmorg/edge:latest linux/epicmorg/edge/main
|
||||
|
||||
- name: Build Base Edge + JDK 6
|
||||
run: docker build --compress -t epicmorg/edge:jdk6 linux/epicmorg/edge/jdk6
|
||||
|
||||
- name: Build Base Edge + JDK 7
|
||||
run: docker build --compress -t epicmorg/edge:jdk7 linux/epicmorg/edge/jdk7
|
||||
|
||||
- name: Build Base Edge + JDK 8
|
||||
run: docker build --compress -t epicmorg/edge:jdk8 linux/epicmorg/edge/jdk8
|
||||
|
||||
- name: Build Base Edge + JDK 11
|
||||
run: docker build --compress -t epicmorg/edge:jdk11 linux/epicmorg/edge/jdk11
|
||||
|
||||
- name: Cleanup
|
||||
run: docker system prune --all --force --volumes
|
||||
|
||||
##########
|
||||
|
||||
- name: Build Base Develop
|
||||
run: docker build --compress -t epicmorg/devel:latest linux/epicmorg/devel/main
|
||||
|
||||
- name: Build Base Develop + JDK 6
|
||||
run: docker build --compress -t epicmorg/devel:jdk6 linux/epicmorg/devel/jdk6
|
||||
|
||||
- name: Build Base Develop + JDK 7
|
||||
run: docker build --compress -t epicmorg/devel:jdk7 linux/epicmorg/devel/jdk7
|
||||
|
||||
- name: Build Base Develop + JDK 8
|
||||
run: docker build --compress -t epicmorg/devel:jdk8 linux/epicmorg/devel/jdk8
|
||||
|
||||
- name: Build Base Develop + JDK 11
|
||||
run: docker build --compress -t epicmorg/devel:jdk11 linux/epicmorg/devel/jdk11
|
||||
|
||||
- name: Cleanup
|
||||
run: docker system prune --all --force --volumes
|
||||
|
||||
##########
|
||||
|
||||
- name: Build MatterMost (latest)
|
||||
run: docker build --compress -t epicmorg/mattermost-enterprise-edition:latest linux/mattermost/latest
|
||||
|
||||
- name: Build TeamCity Agent
|
||||
run: docker build --compress -t epicmorg/teamcity-agent:latest linux/teamcity/agent
|
||||
|
||||
- name: Build NGinx (latest)
|
||||
run: docker build --compress -t epicmorg/nginx:latest linux/nginx/latest
|
||||
|
||||
- name: Build NGinx + PHP7.4
|
||||
run: docker build --compress -t epicmorg/nginx:php linux/nginx/php
|
||||
|
||||
- name: Build NGinx + RTMP-HLS
|
||||
run: docker build --compress -t epicmorg/nginx:rtmp-hls linux/nginx/rtmp-hls
|
||||
|
||||
- name: Cleanup
|
||||
run: docker system prune --all --force --volumes
|
||||
|
||||
- name: PHP (latest)
|
||||
run: docker build --compress -t epicmorg/php:latest linux/php/latest
|
||||
|
||||
- name: PHP 7.4
|
||||
run: docker build --compress -t epicmorg/php:php7.4 linux/php/php7.4
|
||||
|
||||
- name: PHP 7.3
|
||||
run: docker build --compress -t epicmorg/php:php7.3 linux/php/php7.3
|
||||
|
||||
- name: PHP 7.2
|
||||
run: docker build --compress -t epicmorg/php:php7.2 linux/php/php7.2
|
||||
|
||||
- name: Cleanup
|
||||
run: docker system prune --all --force --volumes
|
||||
|
||||
- name: Build Apache (latest)
|
||||
run: docker build --compress -t epicmorg/apache2:latest linux/apache2/latest
|
||||
|
||||
- name: Build Apache + PHP7.4
|
||||
run: docker build --compress -t epicmorg/apache2:php7.4 linux/apache2/php7.4
|
||||
|
||||
- name: Build Apache + PHP7.3
|
||||
run: docker build --compress -t epicmorg/apache2:php7.3 linux/apache2/php7.3
|
||||
|
||||
- name: Build Apache + PHP7.2
|
||||
run: docker build --compress -t epicmorg/apache2:php7.2 linux/apache2/php7.2
|
||||
|
||||
- name: Build Testrail (always latest)
|
||||
run: docker build --compress -t epicmorg/testrail:latest linux/testrail/latest
|
||||
|
||||
- name: Build PostgresSQL (latest)
|
||||
run: docker build --compress -t epicmorg/postgres:latest linux/postgres/latest
|
||||
|
||||
##########
|
||||
|
||||
- name: Build Bitbucket + JDK 8 (latest)
|
||||
run: docker build --compress -t epicmorg/bitbucket:latest linux/atlassian/bitbucket/latest
|
||||
|
||||
- name: Build Bitbucket + JDK 11 (latest-jdk11)
|
||||
run: docker build --compress -t epicmorg/bitbucket:latest-jdk11 -f linux/atlassian/bitbucket/latest/Dockerfile.jdk11 linux/atlassian/bitbucket/latest
|
||||
|
||||
- name: Build Confluence + JDK 8 (latest)
|
||||
run: docker build --compress -t epicmorg/confluence:latest linux/atlassian/confluence/latest
|
||||
|
||||
- name: Build Confluence + JDK 11 (latest-jdk11)
|
||||
run: docker build --compress -t epicmorg/confluence:latest-jdk11 -f linux/atlassian/confluence/latest/Dockerfile.jdk11 linux/atlassian/confluence/latest
|
||||
|
||||
- name: Cleanup
|
||||
run: docker system prune --all --force --volumes
|
||||
|
||||
- name: Build Jira + JDK 8 (latest)
|
||||
run: docker build --compress -t epicmorg/jira:latest linux/atlassian/jira/latest
|
||||
|
||||
- name: Build Jira + JDK 11 (latest-jdk11)
|
||||
run: docker build --compress -t epicmorg/jira:latest-jdk11 -f linux/atlassian/jira/latest/Dockerfile.jdk11 linux/atlassian/jira/latest
|
||||
|
||||
- name: Build Fisheye + Crucible + JDK 8 (latest)
|
||||
run: docker build --compress -t epicmorg/fisheye-crucible:latest linux/atlassian/fisheye-crucible/latest
|
||||
|
||||
- name: Build Postgres (latest)
|
||||
run: docker build --compress -t epicmorg/postgres:latest linux/postgres/latest
|
||||
|
||||
- name: Cleanup
|
||||
run: docker system prune --all --force --volumes
|
||||
|
||||
##########
|
||||
|
||||
- name: Build qBitTorrent (latest)
|
||||
run: docker build --compress -t epicmorg/qbittorrent:latest linux/qbittorrent/latest
|
||||
|
||||
- name: Build qBitTorrent (unstable)
|
||||
run: docker build --compress -t epicmorg/qbittorrent:unstable linux/qbittorrent/latest
|
||||
|
||||
- name: Build qBitTorrent (stable)
|
||||
run: docker build --compress -t epicmorg/qbittorrent:stable linux/qbittorrent/stable
|
||||
|
||||
- name: Cleanup
|
||||
run: docker system prune --all --force --volumes
|
||||
|
||||
#########################################
|
||||
#### secondary images and backports
|
||||
#########################################
|
||||
|
||||
- name: Build vk2discord (latest)
|
||||
run: docker build --compress -t epicmorg/vk2discord:latest linux/vk2discord/latest
|
||||
|
||||
- name: Build PostgresSQL (8.2)
|
||||
run: docker build --compress -t epicmorg/postgres:8.2 linux/postgres/8.2
|
||||
|
||||
- name: Build PostgresSQL (8.3)
|
||||
run: docker build --compress -t epicmorg/postgres:8.3 linux/postgres/8.3
|
||||
|
||||
- name: Build PostgresSQL (8.4)
|
||||
run: docker build --compress -t epicmorg/postgres:8.4 linux/postgres/8.4
|
||||
|
||||
- name: Build PostgresSQL (9.0)
|
||||
run: docker build --compress -t epicmorg/postgres:9.0 linux/postgres/9.0
|
||||
|
||||
- name: Build PostgresSQL (9.1)
|
||||
run: docker build --compress -t epicmorg/postgres:9.1 linux/postgres/9.1
|
||||
|
||||
- name: Build PostgresSQL (9.2)
|
||||
run: docker build --compress -t epicmorg/postgres:9.2 linux/postgres/9.2
|
||||
|
||||
- name: Cleanup
|
||||
run: docker system prune --all --force --volumes
|
||||
|
||||
- name: Build PostgresSQL (9.3)
|
||||
run: docker build --compress -t epicmorg/postgres:9.3 linux/postgres/9.3
|
||||
|
||||
- name: Build PostgresSQL (9.4)
|
||||
run: docker build --compress -t epicmorg/postgres:9.4 linux/postgres/9.4
|
||||
|
||||
- name: Build PostgresSQL (9.5)
|
||||
run: docker build --compress -t epicmorg/postgres:9.5 linux/postgres/9.5
|
||||
|
||||
- name: Build PostgresSQL (9.6)
|
||||
run: docker build --compress -t epicmorg/postgres:9.6 linux/postgres/9.6
|
||||
|
||||
- name: Build PostgresSQL (10)
|
||||
run: docker build --compress -t epicmorg/postgres:10 linux/postgres/10
|
||||
|
||||
- name: Build PostgresSQL (11)
|
||||
run: docker build --compress -t epicmorg/postgres:11 linux/postgres/11
|
||||
|
||||
- name: Build PostgresSQL (12)
|
||||
run: docker build --compress -t epicmorg/postgres:12 linux/postgres/12
|
||||
|
||||
- name: Cleanup
|
||||
run: docker system prune --all --force --volumes
|
File diff suppressed because it is too large
Load Diff
45
.github/workflows/docker-win32-develop.yml
vendored
Normal file
45
.github/workflows/docker-win32-develop.yml
vendored
Normal file
@ -0,0 +1,45 @@
|
||||
name: develop-win32
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- '*'
|
||||
tags:
|
||||
- '*'
|
||||
push:
|
||||
branches:
|
||||
- 'develop'
|
||||
|
||||
jobs:
|
||||
build-forked-fixed-independed-images:
|
||||
name: EpicMorg Base Win32 Production images
|
||||
runs-on: windows-latest
|
||||
env:
|
||||
DOCKER_CLI_EXPERIMENTAL: true
|
||||
|
||||
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: Get Experimental Status
|
||||
run: |
|
||||
docker version -f '{{.Server.Experimental}}'
|
||||
|
||||
##################################################################################
|
||||
|
||||
- name: Build Base Win32 Production
|
||||
run: docker build --compress -t prod:win10 win32/epicmorg/prod/win10
|
||||
|
||||
- name: Build Base Win32-Server Production
|
||||
run: docker build --compress -t prod:win-server-core win32/epicmorg/prod/win-server-core
|
||||
|
||||
- name: Cleanup
|
||||
run: docker system prune --all --force --volumes
|
||||
|
||||
#########################################
|
||||
#### secondary images and backports
|
||||
#########################################
|
||||
|
||||
- name: Cleanup
|
||||
run: docker system prune --all --force --volumes
|
58
.github/workflows/docker-win32-master.yml
vendored
Normal file
58
.github/workflows/docker-win32-master.yml
vendored
Normal file
@ -0,0 +1,58 @@
|
||||
name: master-win32
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- 'master'
|
||||
schedule:
|
||||
- cron: '00 00 * * 6' # At 12:00 AM, only on Saturday
|
||||
|
||||
jobs:
|
||||
|
||||
##################################################################################
|
||||
#### Template
|
||||
##################################################################################
|
||||
# - name: Build Template
|
||||
# run: docker build --compress -t user/repo:tag path/to/folder/contains/dockerfile
|
||||
# - name: Push Template
|
||||
# run: docker push user/repo:tag
|
||||
##################################################################################
|
||||
|
||||
##################################################################################
|
||||
#### EpicMorg Base Production images
|
||||
##################################################################################
|
||||
|
||||
build-base-prod-iamges:
|
||||
name: EpicMorg Base Win32 Production images
|
||||
runs-on: windows-latest
|
||||
|
||||
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: Get Experimental Status
|
||||
run: |
|
||||
docker version -f '{{.Server.Experimental}}'
|
||||
|
||||
##################################################################################
|
||||
|
||||
- name: Build Base Win32 Production
|
||||
run: docker build --compress -t prod:win10 win32/epicmorg/prod/win10
|
||||
- name: Push Build Base Win32 Production
|
||||
run: docker push epicmorg/prod:win10
|
||||
|
||||
- name: Build Base Win32-Server Production
|
||||
run: docker build --compress -t prod:win-server-core win32/epicmorg/prod/win-server-core
|
||||
- name: Push Base Win32-Server Production
|
||||
run: docker push epicmorg/prod:win-server-core
|
||||
|
||||
- name: Cleanup
|
||||
run: docker system prune --all --force --volumes
|
||||
|
||||
#########################################
|
||||
#### secondary images and backports
|
||||
#########################################
|
||||
|
||||
- name: Cleanup
|
||||
run: docker system prune --all --force --volumes
|
@ -1,10 +1,17 @@
|
||||
## Changelog
|
||||
### 2021
|
||||
* `april`
|
||||
* `[BREAKING CHANGES]` reorganized space - `linux` and `win32` folders
|
||||
* `[BREAKING CHANGES]` images `balancer` and `websites` was renamed to `nginx` and `apache2`.
|
||||
* support of old repos will be unlin `jan/2022`. please usen new instead.
|
||||
* updated `atlassian` images
|
||||
* fixed scripts by `find . -name '*.sh' -type f | xargs chmod +x` by [sof](https://stackoverflow.com/questions/13377606/chmod-recursively).
|
||||
* added suport of `win32` images. just experemental.
|
||||
* `march`
|
||||
* `apache2`, `nginx`, `php` - fixed php versions, fixed dependency hell. code updated.
|
||||
* `nginx` 1.19.8
|
||||
* `testrail` v7+ migrated to `php 7.4`
|
||||
updated `atlassian` images, `nextcloud`
|
||||
* updated `atlassian` images, `nextcloud`
|
||||
* `february`
|
||||
* hm.. nothing
|
||||
* `january`
|
||||
|
@ -1,5 +0,0 @@
|
||||
all: nginx
|
||||
|
||||
nginx:
|
||||
docker build --compress -t epicmorg/balancer:latest .
|
||||
docker push epicmorg/balancer:latest
|
@ -1,5 +0,0 @@
|
||||
all: nginx
|
||||
|
||||
nginx:
|
||||
docker build --compress -t epicmorg/balancer:php .
|
||||
docker push epicmorg/balancer:php
|
@ -1,5 +0,0 @@
|
||||
all: nginx
|
||||
|
||||
nginx:
|
||||
docker build --compress -t epicmorg/balancer:rtmp-hls .
|
||||
docker push epicmorg/balancer:rtmp-hls
|
4
bin/chmod.sh
Executable file
4
bin/chmod.sh
Executable file
@ -0,0 +1,4 @@
|
||||
#!/bin/bash
|
||||
cd ..
|
||||
find . -name '*.sh' -type f | xargs chmod +x
|
||||
find . -name '*.py' -type f | xargs chmod +x
|
5
linux/apache2/latest/Makefile
Normal file
5
linux/apache2/latest/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
all: apache2
|
||||
apache2:
|
||||
docker build --compress -t epicmorg/apache2:latest .
|
||||
docker push epicmorg/apache2:latest
|
||||
docker push epicmorg/websites:latest
|
5
linux/apache2/php7.2/Makefile
Normal file
5
linux/apache2/php7.2/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
all: apache2
|
||||
apache2:
|
||||
docker build --compress -t epicmorg/apache2:php7.2 .
|
||||
docker push epicmorg/apache2:php7.2
|
||||
docker push epicmorg/websites:php7.2
|
5
linux/apache2/php7.3/Makefile
Normal file
5
linux/apache2/php7.3/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
all: apache2
|
||||
apache2:
|
||||
docker build --compress -t epicmorg/apache2:php7.3 .
|
||||
docker push epicmorg/apache2:php7.3
|
||||
docker push epicmorg/websites:php7.3
|
5
linux/apache2/php7.4/Makefile
Normal file
5
linux/apache2/php7.4/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
all: apache2
|
||||
apache2:
|
||||
docker build --compress -t epicmorg/apache2:php7.4 .
|
||||
docker push epicmorg/apache2:php7.4
|
||||
docker push epicmorg/websites:php7.4
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user