feat: initial commit

This commit is contained in:
Eugene Prodan
2021-06-06 20:26:13 +03:00
commit 65c93fa871
4 changed files with 51 additions and 0 deletions

17
docker-compose.yml Normal file
View File

@@ -0,0 +1,17 @@
version: "3.9"
services:
haproxy:
image: "haproxy:latest"
ports:
- 80:80
volumes:
- ./haproxy.cfg:/usr/local/etc/haproxy/haproxy.cfg
- ./scripts/:/usr/local/etc/haproxy/scripts/
nginx:
image: "nginx:latest"
redis:
image: "redis:latest"
ports:
- 6379:6379