Skip to content

Commit

Permalink
Change postgres and redis version in all compose files.
Browse files Browse the repository at this point in the history
  • Loading branch information
hermanzdosilovic committed Oct 1, 2020
1 parent 561c2a3 commit be300ef
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docker-compose.https.yml
Expand Up @@ -53,15 +53,15 @@ services:
restart: always

db:
image: postgres:9.6
image: postgres:13.0
env_file: judge0.conf
volumes:
- ./srv/postgres-data:/var/lib/postgresql/data/
<<: *default-logging
restart: always

redis:
image: redis:4.0
image: redis:6.0
command: [
"bash", "-c",
'docker-entrypoint.sh --appendonly yes --requirepass "$$REDIS_PASSWORD"'
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.server.yml
Expand Up @@ -19,7 +19,7 @@ services:
restart: always

db:
image: postgres:9.6
image: postgres:13.0
env_file: judge0.conf
volumes:
- ./srv/postgres-data:/var/lib/postgresql/data/
Expand All @@ -29,7 +29,7 @@ services:
restart: always

redis:
image: redis:4.0
image: redis:6.0
command: [
"bash", "-c",
'docker-entrypoint.sh --appendonly yes --requirepass "$$REDIS_PASSWORD"'
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Expand Up @@ -28,15 +28,15 @@ services:
restart: always

db:
image: postgres:9.6
image: postgres:13.0
env_file: judge0.conf
volumes:
- ./srv/postgres-data:/var/lib/postgresql/data/
<<: *default-logging
restart: always

redis:
image: redis:4.0
image: redis:6.0
command: [
"bash", "-c",
'docker-entrypoint.sh --appendonly yes --requirepass "$$REDIS_PASSWORD"'
Expand Down

0 comments on commit be300ef

Please sign in to comment.