blob: 828b0cc27cc78f3a697198448c478bcd43c2c61b (
plain) (
tree)
|
|
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:
|