Merge branch 'master' of https://github.com/lukepolo/expose into lukepolo-master

This commit is contained in:
Marcel Pociot
2020-07-28 21:38:00 +02:00
7 changed files with 80 additions and 0 deletions

View File

@@ -122,4 +122,21 @@ return [
// ...
```
## Running With Docker
To run Expose with docker use the included `docker-compose.yaml`. Copy `.env-example` to `.env` and update the configuration.
```
PORT=8080
DOMAIN=example.com
ADMIN_USERNAME=username
ADMIN_PASSWORD=password
```
After updating the environment variables you can start the server:
```bash
docker-compose up -d
```
Now that your basic expose server is running, let's take a look at how you can add SSL support.