diff --git a/Docker/hoppscotch/docker-compose.yml b/Docker/hoppscotch/docker-compose.yml new file mode 100644 index 0000000..2bc631b --- /dev/null +++ b/Docker/hoppscotch/docker-compose.yml @@ -0,0 +1,18 @@ +version: '3' +services: + hoppscotch: + container_name: hoppscotch + restart: unless-stopped + # ports: + # - "3000:3000" + image: hoppscotch/hoppscotch:latest + networks: + nginx: + aliases: + - hoppscotch + +networks: + nginx: + external: true + +# docker run --rm --name hoppscotch -p 3000:3000 hoppscotch/hoppscotch:latest \ No newline at end of file