Skip to content

Commit

Permalink
match port numbers correctly for prod
Browse files Browse the repository at this point in the history
  • Loading branch information
pH-7 committed May 11, 2024
1 parent cafdfe3 commit 57b6c9f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docker-compose.production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ services:
image: atomicsearch/massiveprediction:latest
environment:
- HOST=${HOST:-0.0.0.0}
- PORT=443
- PORT=${PORT:-443}
- REDIS_PORT=6379
- BASIC_SSL=${BASIC_SSL:-true}
- IS_CACHE_ENABLED=false
ports:
- "80:7860"
- "443:7860"
- "${PORT:-80}:80"
- "${PORT:-443}:443"
build:
dockerfile: Dockerfile
context: .
Expand Down

0 comments on commit 57b6c9f

Please sign in to comment.