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

Update Nexus proxy server for T2/T3 package access #1744

Merged
merged 5 commits into from
Feb 16, 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
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ packages:
- clamav-freshclam
- clamav-unofficial-sigs
- docker.io
- docker-compose
- docker-compose-v2
- python3-requests
package_update: true
package_upgrade: true
Expand Down Expand Up @@ -146,7 +146,7 @@ runcmd:
- sleep 1m
- systemctl status docker
- docker --version
- docker-compose --version
- docker compose --version

# Create directory for Nexus data that is owned by the correct user inside the Docker container
- echo ">=== Creating Nexus data directory... ===<"
Expand All @@ -163,7 +163,7 @@ runcmd:

# Set up the Nexus container
- echo ">=== Creating Nexus container... ===<"
- su nexusdaemon -c "docker-compose -f /etc/nexus/docker-compose.yaml up -d"
- su nexusdaemon -c "docker compose -f /etc/nexus/docker-compose.yaml up -d"

# Give Nexus some time to initialise
- echo ">=== Waiting for Nexus to initialise (5 minutes)... ===<"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: "3"
services:
nexus:
container_name: nexus_nexus_compose
image: sonatype/nexus3:3.37.3
image: sonatype/nexus3:3.65.0
expose:
- 8081
volumes:
Expand All @@ -13,7 +13,7 @@ services:
restart: always
nginx:
container_name: nginx_nexus_compose
image: nginx:1.21.6
image: nginx:1.25
ports:
- 80:80
volumes:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ services:

nginx:
container_name: nginx_guacamole_compose
image: nginx:1.25.3
image: nginx:1.25
links:
- guacamole
networks:
Expand Down
Loading