You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
I have built doorman image via docker.
I run it with docker compose
version: '3'
services:
postgres:
image: postgres:latest
ports:
- "5432:5432"
environment:
- "DEBUG=true"
- "POSTGRES_PASSWORD=passwordhere"
doorman:
image: doorman:latest
ports:
- "5000:5000"
environment:
- "DOORMAN_ENROLL_SECRET=foo"
- "DOORMAN_SECRETS_KEY=doorman"
- "POSTGRES_USER=doorman"
- "POSTGRES_PASSWORD=passwordhere"
- "POSTGRES_PORT=postgres"
`
But when I check to connect via client (http://ip_doorman:5000) I can not reach the page but the port on 5000 responds from telnet
The text was updated successfully, but these errors were encountered:
Hello,
I have built doorman image via docker.
I run it with docker compose
version:
'3'services:
postgres:
image: postgres:latest
ports:
- "5432:5432"
environment:
- "DEBUG=true"
- "POSTGRES_PASSWORD=passwordhere"
doorman:
image: doorman:latest
ports:
- "5000:5000"
environment:
- "DOORMAN_ENROLL_SECRET=foo"
- "DOORMAN_SECRETS_KEY=doorman"
- "POSTGRES_USER=doorman"
- "POSTGRES_PASSWORD=passwordhere"
- "POSTGRES_PORT=postgres"
`
But when I check to connect via client (http://ip_doorman:5000) I can not reach the page but the port on 5000 responds from telnet
The text was updated successfully, but these errors were encountered: