Created
August 16, 2016 15:27
-
-
Save Clement-TS/21d9df0ba80ab824da8668a018377c7c to your computer and use it in GitHub Desktop.
Proxy docker-compose
This file contains hidden or 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
version: '2' | |
services: | |
proxy: | |
image: nginx:stable | |
container_name: proxy | |
ports: | |
- 80:80 | |
- 443:443 | |
restart: always | |
volumes: | |
- ./nginx.conf:/etc/nginx/conf.d/default.conf | |
networks: | |
telecomsante.loc: | |
aliases: | |
- proxy.telecomsante.loc | |
networks: | |
telecomsante.loc: | |
external: true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment