Ver código fonte

Merge pull request #54 from trentsummerfield/patch-1

Add a link from nginx to openvpn in docker-compose
master
Kristian Haugene 8 anos atrás
pai
commit
0dfed9e9ef
2 arquivos alterados com 3 adições e 1 exclusões
  1. 1
    1
      README.md
  2. 2
    0
      docker-compose.yml

+ 1
- 1
README.md Ver arquivo

@@ -104,7 +104,7 @@ http {
}
```
Your Transmission WebUI should now be avaliable at "your.host.ip.addr:8080/transmission/web/".
Change the port in the docker run command if 8080 is not suitable for you.
Change the port in the docker run command if 8080 is not suitable for you. Alternatively if you use container linking, either directly or via docker-compose, you can replace "your.host.ip.addr" with the name or alias of the openvpn container.

## Known issues
Some have encountered problems with DNS resolving inside the docker container.

+ 2
- 0
docker-compose.yml Ver arquivo

@@ -14,6 +14,8 @@ openvpn:

nginx:
image: library/nginx
links:
- openvpn
ports:
- "8080:8080"
volumes:

Carregando…
Cancelar
Salvar