diff options
author | terminaldweller <thabogre@gmail.com> | 2021-07-02 04:57:01 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2021-07-02 04:57:01 +0000 |
commit | 9e1780717f603e5aa01d68afe37841d0b84f271b (patch) | |
tree | c7bb6193cf4271202b7653ddd2b1cc37e503f46f /terminaldweller.com/haproxy/docker-compose.yaml | |
parent | so many things (diff) | |
download | scripts-9e1780717f603e5aa01d68afe37841d0b84f271b.tar.gz scripts-9e1780717f603e5aa01d68afe37841d0b84f271b.zip |
update
Diffstat (limited to '')
-rw-r--r-- | terminaldweller.com/haproxy/docker-compose.yaml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/terminaldweller.com/haproxy/docker-compose.yaml b/terminaldweller.com/haproxy/docker-compose.yaml new file mode 100644 index 0000000..fe861d0 --- /dev/null +++ b/terminaldweller.com/haproxy/docker-compose.yaml @@ -0,0 +1,9 @@ +version: "3.4" +services: + haproxy: + image: haproxy + ports: + - "80:80" + volumes: + - ./haproxy.cfg:/usr/local/etc/haproxy/haproxy.cfg:ro + |