Skip to content

Commit 9e1df70

Browse files
committed
Removed legacy links; Added shell to command
1 parent a3b5f70 commit 9e1df70

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

docker-compose.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,6 @@ services:
2626
build:
2727
context: .
2828
dockerfile: ./Dockerfile
29-
links:
30-
- db:db
31-
- redis:redis
3229
ports:
3330
- '8000:8000'
3431
depends_on:

usage_scenario_warm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ services:
2020
build:
2121
context: .
2222
dockerfile: ./Dockerfile
23-
shell: bash
2423
setup-commands:
2524
- command: /venv/bin/python manage.py migrate
2625
- command: /venv/bin/python manage.py load_initial_data
2726
- command: wget --recursive --spider --no-directories http://app:8000/ -o warmup.log || true
27+
shell: bash
2828
# wget issues an error code 8 due to some images returning 404. We could catch the code 8 specifically, but
2929
# it would not tell us if these are the known images or some other problems with the sever occured.
3030
# Sadly this call is very flaky and might still show up as successful even if cache warmup did not really work :(

0 commit comments

Comments
 (0)