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
{{ message }}
This repository has been archived by the owner on Dec 4, 2020. It is now read-only.
The docker-compose.yml has two errors in the way ports are exposed, causing an error while spinning up ADOP using the latest version of Docker. For example, ERROR: Invalid published port: 50000/tcp.
Line 32: - "389/tcp:389/tcp" should be - "389:389/tcp"
Line 209: - "50000/tcp:50000/tcp" should be - "50000:50000/tcp"
The text was updated successfully, but these errors were encountered:
The
docker-compose.yml
has two errors in the way ports are exposed, causing an error while spinning up ADOP using the latest version of Docker. For example,ERROR: Invalid published port: 50000/tcp
.Line 32:
- "389/tcp:389/tcp"
should be- "389:389/tcp"
Line 209:
- "50000/tcp:50000/tcp"
should be- "50000:50000/tcp"
The text was updated successfully, but these errors were encountered: