fixing docker-compose

This commit is contained in:
Your Name
2022-02-14 17:07:27 +01:00
parent 70d61a1a1b
commit 04345009fe
3 changed files with 3 additions and 3 deletions

View File

@@ -63,7 +63,7 @@ library
, memory
, mr-env
, network
, opaleye >=0.9.0.0 && <0.9.2.0
, opaleye >=0.9.0.0 && <0.9.1.0
, rel8
, servant
, servant-auth

View File

@@ -21,7 +21,7 @@ services:
api:
build: ./api
ports:
- "3000:81"
- "81:8080"
depends_on:
- "db"
worker:

View File

@@ -9,6 +9,6 @@ server {
}
location /api/ {
proxy_pass http://api:81/;
proxy_pass http://api:8080/;
}
}