Skip to content

Commit

Permalink
Fixed typo in docker-compose up
Browse files Browse the repository at this point in the history
The option `-d` cannot come before the `up`.  Also, inlined the instructions to make it harder to misunderstand.
  • Loading branch information
ubershmekel authored and nknapp committed Feb 13, 2017
1 parent 4d1c5c8 commit c75a5fb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,16 @@ Docker-compose setup for starting [Træfik](https://traefik.io/) as reverse-pro
## Usage

Clone this repository `reverse-proxy`, change mail-address and domain,
and then run `docker-compose -d up` to startup the service.
and then run `docker-compose up -d` to startup the service.

```bash
git clone https://github.com/docker-compose-examples/reverse-proxy
cd reverse-proxy
# Run `sed` or edit `traefik.toml` yourself
sed -i 's/letsencrypt\@example\.com/[email protected]/g' traefik.toml
sed -i 's/example\.com/my-domain.com/g' traefik.toml
# Start the reverse proxy
docker-compose up -d
```


Expand Down

0 comments on commit c75a5fb

Please sign in to comment.