This revision adds a .env that allows docker-compose to pick up its ports and the URI from a customizable .devcontainer/.env file
The instructions are added to the README as well, but generally:
`PHORGE_WEB_PORT` - Defaults to port `80`, set to something else if desired
`PHORGE_SSH_PORT` - The SSH port that phorge repos will be available on. Defaults to `22280`
`PHORGE_BASE_URI` - The entry should match your hosts file. Defaults to `http://phorge.localhost` - However, if you update `PHORGE_WEB_PORT` to something other than `80` you will need to update this URI to match. e.g. if port is `8020` make this URI `http://phorge.localhost:8020`
This revision adds a
.env
that allowsdocker-compose
to pick up its ports and the URI from a customizable.devcontainer/.env
fileThe instructions are added to the
README
as well, but generally:Fixes #2