-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The option `-d` cannot come before the `up`. Also, inlined the instructions to make it harder to misunderstand.
- Loading branch information
1 parent
4d1c5c8
commit c75a5fb
Showing
1 changed file
with
5 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
``` | ||
|
||
|
||
|