github.com/wmuizelaar/kpt@v0.0.0-20221018115725-bd564717b2ed/scripts/run-site.sh (about)

     1  #!/usr/bin/env bash
     2  # Copyright 2019 Google LLC
     3  #
     4  # Licensed under the Apache License, Version 2.0 (the "License");
     5  # you may not use this file except in compliance with the License.
     6  # You may obtain a copy of the License at
     7  #
     8  #      http://www.apache.org/licenses/LICENSE-2.0
     9  #
    10  # Unless required by applicable law or agreed to in writing, software
    11  # distributed under the License is distributed on an "AS IS" BASIS,
    12  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    13  # See the License for the specific language governing permissions and
    14  # limitations under the License.
    15  
    16  # Set read/execute permissions for newly created site files in macOS or Linux.
    17  setfacl -Rd -m o::rx site/ 2> /dev/null || chmod -R +a "everyone allow read,execute,file_inherit,directory_inherit" site/
    18  # Set read/execute permissions for existing site files.
    19  chmod -R o+rx site/
    20  # Terminate running kpt-site docker containers and rebuild.
    21  docker stop $(docker ps -q --filter ancestor=kpt-site:latest) || docker build site/ -t kpt-site:latest
    22  # Mount the site directory as the default content for the docker container.
    23  docker run -v `pwd`/site:/usr/share/nginx/html -p 3000:80 -d kpt-site:latest
    24  echo "Serving docs at http://127.0.0.1:3000"