diff options
author | terminaldweller <thabogre@gmail.com> | 2021-11-11 06:12:32 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2021-11-11 06:12:32 +0000 |
commit | 00301734db0e9492ac636f8e99db65b34542224d (patch) | |
tree | 142b7e8b9293b5536d1f7e5f5a717073eac37c1f /docker-compose-test.yaml | |
parent | http2 WIP (diff) | |
download | blog-https.tar.gz blog-https.zip |
changes the layout of the bloghttps
Diffstat (limited to 'docker-compose-test.yaml')
-rw-r--r-- | docker-compose-test.yaml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/docker-compose-test.yaml b/docker-compose-test.yaml new file mode 100644 index 0000000..73981ef --- /dev/null +++ b/docker-compose-test.yaml @@ -0,0 +1,17 @@ +version: "3.7" +services: + web: + image: web + build: + context: ./ + networks: + - webnet + ports: + - "19009:9000" + cap_drop: + - ALL + environment: + - SERVER_DEPLOYMENT_TYPE=test + - SERVER_LISTEN_PORT=9000 +networks: + webnet: |