diff options
author | Cody Hiar <cody@hiar.ca> | 2023-05-05 10:52:26 -0600 |
---|---|---|
committer | Cody Hiar <cody@hiar.ca> | 2023-05-05 10:52:26 -0600 |
commit | 396092d197fdd4af2af7671959667d2bd303de22 (patch) | |
tree | 8b95522122f8215c1ba41472fb7a3eae76c6f2c6 /docker-compose.yml |
Diffstat (limited to 'docker-compose.yml')
-rw-r--r-- | docker-compose.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..80ecbce --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,19 @@ +version: '3' +services: + mynginx: + build: + context: ./ + dockerfile: ./docker/Dockerfile + depends_on: + - httpbin + container_name: nginx-proxy-test + image: thornycrackers/nginx-proxy-test + ports: + - "8822:80" + volumes: + - .:/usr/src/app + - ./docker/nginx:/etc/nginx + httpbin: + image: kennethreitz/httpbin + ports: + - "8823:80" |