docker/docker-compose.yml

18 lines
355 B
YAML
Raw Permalink Normal View History

2016-06-15 23:56:53 +00:00
nginx1 :
image: "nginx"
environment:
2018-07-16 21:52:50 +00:00
VIRTUAL_HOST: "test100.bleu.de"
2016-06-15 23:56:53 +00:00
restart: always
container_name: nginx1
nginx2:
image: nginx
environment:
2018-07-16 21:52:50 +00:00
VIRTUAL_HOST: "test101.bleu.de"
2016-06-15 23:56:53 +00:00
restart: always
container_name: nginx2
2018-07-16 21:52:50 +00:00
nginx3:
image: nginx
environment:
VIRTUAL_HOST: "test101.bleu.de"
2016-06-15 23:56:53 +00:00
restart: always
2018-07-16 21:52:50 +00:00
container_name: nginx3