-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '6.x' into build/fix-ghcr-pkg-metadata
- Loading branch information
Showing
21 changed files
with
197 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 +24,7 @@ jobs: | |
uses: docker/setup-qemu-action@v2 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
uses: docker/setup-buildx-action@v3 | ||
|
||
- uses: actions/checkout@v3 | ||
|
||
|
@@ -56,6 +56,23 @@ jobs: | |
org.opencontainers.image.source=https://github.com/${{ github.repository }}/tree/${{ (contains(fromJson('["opened","synchronize"]'), github.event.action)) && github.head_ref || github.event.action == 'closed' && github.base_ref || github.ref_name }}/images/${{ matrix.images }}/Dockerfile | ||
org.opencontainers.image.description=Test annotation description for ghcr | ||
- name: Create the AWX-EE context | ||
if: matrix.images == 'awx-ee' | ||
run: | | ||
pip install --upgrade ansible-builder | ||
ansible-builder create \ | ||
--output-filename Dockerfile \ | ||
--verbosity 3 | ||
working-directory: ./images/awx-ee | ||
|
||
- name: Upload AWX-EE context for review | ||
if: matrix.images == 'awx-ee' | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: awx-ee-context | ||
path: ./images/awx-ee/context | ||
retention-days: 1 | ||
|
||
- name: Build and push the images | ||
uses: docker/[email protected] | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,3 +22,4 @@ curl | |
openssl | ||
jq | ||
rsync | ||
apache2-utils |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# | ||
# mailpit Dockerfile | ||
# | ||
|
||
FROM alpine:latest | ||
ARG MAILPIT_VERSION=1.19.0 | ||
|
||
# Install ca-certificates, required for the "release message" feature: | ||
RUN apk --no-cache add \ | ||
ca-certificates \ | ||
curl | ||
|
||
# Install mailpit. | ||
VOLUME /tmp | ||
WORKDIR /tmp | ||
RUN curl -L "https://github.com/axllent/mailpit/releases/download/v${MAILPIT_VERSION}/mailpit-$(echo ${TARGETPLATFORM:-linux-amd64} | tr '/' '-').tar.gz" --output mailpit.tar.gz && \ | ||
tar -vxxzf mailpit.tar.gz && \ | ||
mv mailpit /bin/mailpit && \ | ||
chmod +x /bin/mailpit | ||
|
||
# Add mailpit user/group with uid/gid 1000. | ||
# This is a workaround for boot2docker issue #581, see | ||
# https://github.com/boot2docker/boot2docker/issues/581 | ||
RUN adduser -D -u 1000 mailpit | ||
|
||
USER mailpit | ||
|
||
WORKDIR /home/mailpit | ||
|
||
ENTRYPOINT ["mailpit"] | ||
|
||
# Expose the SMTP and HTTP ports: | ||
EXPOSE 1025 8025 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.