Skip to content

Commit

Permalink
Merge pull request #1087 from dandi/rm-redirector
Browse files Browse the repository at this point in the history
Remove redirector from Docker Compose setup
  • Loading branch information
yarikoptic authored Jul 29, 2022
2 parents 3655aa1 + 88f66e6 commit b617f6f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 12 deletions.
11 changes: 0 additions & 11 deletions dandi/tests/data/dandiarchive-docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,6 @@
version: '2.1'

services:
redirector:
image: dandiarchive/dandiarchive-redirector
depends_on:
- django
ports:
- "8079:8080"
environment:
#GUI_URL: http://localhost:8086
ABOUT_URL: http://www.dandiarchive.org
API_URL: http://localhost:8000/api

django:
image: dandiarchive/dandiarchive-api
command: ["./manage.py", "runserver", "--nothreading", "0.0.0.0:8000"]
Expand Down
2 changes: 1 addition & 1 deletion dandi/tests/fixtures.py
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ def docker_compose_setup() -> Iterator[Dict[str, str]]:

if create:
run(
["docker-compose", "up", "-d", "django", "celery", "redirector"],
["docker-compose", "up", "-d", "django", "celery"],
cwd=str(LOCAL_DOCKER_DIR),
env=env,
check=True,
Expand Down

0 comments on commit b617f6f

Please sign in to comment.