mirror of
https://github.com/sameersbn/docker-gitlab.git
synced 2025-12-08 17:36:24 +00:00
Use redis:7 in docker compose files and kubernetes manifests
This commit is contained in:
parent
1bf1c82deb
commit
d9566ce0ef
@ -8,6 +8,7 @@ gitlab.com/gitlab-org/gitlab-foss/blob/master/CHANGELOG.md) for the list of chan
|
||||
- gitlab: upgrade CE to v18.0.0
|
||||
- gitaly: upgrade to v18.0.0
|
||||
- gitlab-pages: upgrade to v18.0.0
|
||||
- redis: upgrade to v7
|
||||
- rubygems: upgrade to v3.6.9
|
||||
- ubuntu: upgrade to noble-20250415.1
|
||||
|
||||
|
||||
@ -183,7 +183,7 @@ Step 2. Launch a redis container
|
||||
```bash
|
||||
docker run --name gitlab-redis -d \
|
||||
--volume /srv/docker/gitlab/redis:/data \
|
||||
redis:6.2
|
||||
redis:7
|
||||
```
|
||||
|
||||
Step 3. Launch the gitlab container
|
||||
@ -387,7 +387,7 @@ To illustrate linking with a redis container, we will use the [redis](https://gi
|
||||
First, let's pull the redis image from the docker index.
|
||||
|
||||
```bash
|
||||
docker pull redis:6.2
|
||||
docker pull redis:7
|
||||
```
|
||||
|
||||
Lets start the redis container
|
||||
@ -395,7 +395,7 @@ Lets start the redis container
|
||||
```bash
|
||||
docker run --name gitlab-redis -d \
|
||||
--volume /srv/docker/gitlab/redis:/data \
|
||||
redis:6.2
|
||||
redis:7
|
||||
```
|
||||
|
||||
We are now ready to start the GitLab application.
|
||||
|
||||
@ -3,7 +3,7 @@ version: '3.4'
|
||||
services:
|
||||
redis:
|
||||
restart: always
|
||||
image: redis:6.2
|
||||
image: redis:7
|
||||
command:
|
||||
- --loglevel warning
|
||||
volumes:
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
version: '3.4'
|
||||
services:
|
||||
redis:
|
||||
image: redis:6.2
|
||||
image: redis:7
|
||||
command:
|
||||
- --loglevel warning
|
||||
volumes:
|
||||
|
||||
@ -3,7 +3,7 @@ version: '2.3'
|
||||
services:
|
||||
redis:
|
||||
restart: always
|
||||
image: redis:6.2
|
||||
image: redis:7
|
||||
command:
|
||||
- --loglevel warning
|
||||
volumes:
|
||||
|
||||
@ -3,7 +3,7 @@ version: '2'
|
||||
services:
|
||||
redis:
|
||||
restart: always
|
||||
image: redis:6.2
|
||||
image: redis:7
|
||||
command:
|
||||
- --loglevel warning
|
||||
volumes:
|
||||
|
||||
@ -3,7 +3,7 @@ version: '2'
|
||||
services:
|
||||
redis:
|
||||
restart: always
|
||||
image: redis:6.2
|
||||
image: redis:7
|
||||
command:
|
||||
- --loglevel warning
|
||||
volumes:
|
||||
|
||||
@ -6,13 +6,12 @@ This is an extend of AWS Remote Backups.
|
||||
|
||||
As explained in [doc.gitlab.com](https://docs.gitlab.com/ce/raketasks/backup_restore.html#upload-backups-to-remote-cloud-storage), it uses [Fog library](http://fog.io) and the module fog-aws. More details on [s3 supported parameters](https://github.com/fog/fog-aws/blob/master/lib/fog/aws/storage.rb)
|
||||
|
||||
|
||||
- [GitLab Backup to s3 compatible storage](#gitlab-backup-to-s3-compatible-storage)
|
||||
- [Available Parameters](#available-parameters)
|
||||
- [Installation](#installation)
|
||||
- [Maintenance](#maintenance)
|
||||
- [Creating Backups](#creating-backups)
|
||||
- [Restoring Backups](#restoring-backups)
|
||||
|
||||
- [Docker Compose](#docker-compose)
|
||||
- [Creating Backups](#creating-backups)
|
||||
- [Restoring Backups](#restoring-backups)
|
||||
|
||||
# Available Parameters
|
||||
|
||||
@ -72,7 +71,7 @@ version: '2'
|
||||
services:
|
||||
redis:
|
||||
restart: always
|
||||
image: sameersbn/redis:6.2
|
||||
image: sameersbn/redis:7
|
||||
command:
|
||||
- --loglevel warning
|
||||
volumes:
|
||||
|
||||
@ -14,7 +14,7 @@ spec:
|
||||
spec:
|
||||
containers:
|
||||
- name: redis
|
||||
image: redis:6.2
|
||||
image: redis:7
|
||||
ports:
|
||||
- name: redis
|
||||
containerPort: 6379
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user