diff options
author | terminaldweller <thabogre@gmail.com> | 2022-03-21 08:44:47 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2022-03-21 08:44:47 +0000 |
commit | 9c6713a8cee48529eb11f7b16845eb6bd1e2a482 (patch) | |
tree | 784f86fe95e051703fe07225ea9015a21058a9d7 /spring-front/docker-compose.yaml | |
parent | daily commit.wip (diff) | |
download | mdrtl-9c6713a8cee48529eb11f7b16845eb6bd1e2a482.tar.gz mdrtl-9c6713a8cee48529eb11f7b16845eb6bd1e2a482.zip |
wip
Diffstat (limited to 'spring-front/docker-compose.yaml')
-rw-r--r-- | spring-front/docker-compose.yaml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/spring-front/docker-compose.yaml b/spring-front/docker-compose.yaml new file mode 100644 index 0000000..828b0cc --- /dev/null +++ b/spring-front/docker-compose.yaml @@ -0,0 +1,25 @@ +version: "3" +services: + react: + image: spring-front + build: + context: . + ports: + - "7080:443" + networks: + - reactnet + restart: unless-stopped + cap_drop: + - ALL + cap_add: + - CHOWN + - DAC_OVERRIDE + - SETGID + - SETUID + - NET_BIND_SERVICE + volumes: + - ./nginx.conf:/etc/nginx/nginx.conf:ro + # env: + # - SERVER_DEPLOYMENT_KIND=test +networks: + reactnet: |