Skip to content

Commit

Permalink
tests: run nginx on port 8081. Used for testing builds for now
Browse files Browse the repository at this point in the history
Nginx isn't fully integrated yet. We add it here so we can run a docker build and test that it's working
  • Loading branch information
Aron Asor committed Nov 22, 2023
1 parent e458dd7 commit c02b905
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,16 @@ x-studio-worker:
environment: *studio-environment

services:
studio-nginx:
platform: linux/amd64
build:
context: .
dockerfile: k8s/images/nginx/Dockerfile
ports:
- "8081:8080"
depends_on:
- studio-app
environment: *studio-environment
studio-app:
<<: *studio-worker
entrypoint: python docker/entrypoint.py
Expand Down

0 comments on commit c02b905

Please sign in to comment.