docker-compose.yaml 304 B

12345678910111213141516
  1. version: "3"
  2. services:
  3. nginx-ui:
  4. build:
  5. context: ./
  6. dockerfile: docker/Dockerfile
  7. environment:
  8. - DOCKER_BUILDKIT=1
  9. image: tuonina/nginx-ui
  10. restart: always
  11. container_name: nginx-ui
  12. ports:
  13. - 8080:8080
  14. volumes:
  15. - ./data:/app/data