Skip to content

Commit

Permalink
Merge pull request #1062 from PokeAPI/graphql-redis-stop
Browse files Browse the repository at this point in the history
Stop redis on our prod graphql machine
  • Loading branch information
Naramsim committed Apr 1, 2024
2 parents 14f4b86 + ada1bf6 commit 2c60ad9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Expand Up @@ -140,10 +140,10 @@ update-graphql-data-prod:
git submodule update --init
docker compose stop graphql-engine
sync; echo 3 > /proc/sys/vm/drop_caches
docker compose -f docker-compose.yml -f Resources/compose/docker-compose-prod-graphql.yml up -d app
docker compose -f docker-compose.yml -f Resources/compose/docker-compose-prod-graphql.yml up -d app cache
make docker-migrate
make docker-build-db
docker compose stop app
docker compose stop app cache
sync; echo 3 > /proc/sys/vm/drop_caches
docker compose exec -T web sh -c 'rm -rf /tmp/cache/*'
docker compose start graphql-engine
Expand Down
3 changes: 3 additions & 0 deletions Resources/compose/docker-compose-prod-graphql.yml
@@ -1,5 +1,8 @@
version: '2.4'
services:
cache:
restart: "no"

db:
environment:
POSTGRES_PASSWORD: "${POSTGRES_PASSWORD}"
Expand Down

0 comments on commit 2c60ad9

Please sign in to comment.