Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update ci environment #306

Merged
merged 1 commit into from
Mar 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@decdde0ac072f6dcbe43649d82d9c635fff5b4e4 # v4
uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e # v4
10 changes: 5 additions & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3.9"
services:

postgres:
image: docker.io/library/postgres:16-alpine@sha256:bbd7346fab25b7e0b25f214829d6ebfb78ef0465059492e46dee740ce8fcd844
image: docker.io/library/postgres:16-alpine@sha256:49fd8c13fbd0eb92572df9884ca41882a036beac0f12e520274be85e7e7806e9
network_mode: host
# ports:
# - "5432:5432"
Expand All @@ -13,7 +13,7 @@ services:
POSTGRES_PASSWORD: password

minio:
image: quay.io/minio/minio:latest@sha256:b9e644d40add58b121f7801e9ec0e19a58f836a366a88011e8951e3166aaf16e
image: quay.io/minio/minio:latest@sha256:ea2c70cda70860c7d10f04ce1df640d3abb995784cb7aeedef8d4baa53a5a113
command: [ "server", "/data", "--console-address", ":9001" ]
network_mode: host
# ports:
Expand All @@ -26,7 +26,7 @@ services:
aws-cli:
depends_on:
- minio
image: docker.io/amazon/aws-cli@sha256:543ac4eab3d32bbeef968f3bceb4792157a22504b7c38437680f3da1e2356987
image: docker.io/amazon/aws-cli@sha256:e55139d687402a5e601f3481035f3e5b8cf8884a69dc4859d48bfb3ff05c5520
entrypoint: aws
network_mode: host
command:
Expand All @@ -44,7 +44,7 @@ services:
AWS_DEFAULT_REGION: us-east-1

generate-certificates:
image: docker.io/alpine/openssl@sha256:f46f31192b7e387f2999c6fa330cbbeff92519f9494fd1b4f9240f296ee53ad4
image: docker.io/alpine/openssl@sha256:935ab19102aae3aafbb54b0583760d357dbad8b8cc1d3b506c32219632c41e9a
entrypoint: /mnt/scripts/generate-test-certificate
working_dir: /mnt/
volumes:
Expand All @@ -56,7 +56,7 @@ services:
type: bind

nginx:
image: docker.io/library/nginx@sha256:c26ae7472d624ba1fafd296e73cecc4f93f853088e6a9c13c0d52f6ca5865107
image: docker.io/library/nginx@sha256:6db391d1c0cfb30588ba0bf72ea999404f2764febf0f1f196acd5867ac7efa7e
network_mode: host
volumes:
- ./resources/test/nginx:/etc/nginx:ro
Expand Down
Loading