Sign inSign up

betedo/profiler

By betedo

Updated over 6 years ago

Image
0

328

betedo/profiler repository overview

What is Profiler?

Coming Soon

How to use this image

Prerequisites

Run with some simple static content

  • Run docker command on your machine in logging mode
docker run -it -p 8080:8080 -v /some/storage:/app/storage --restart always --name profiler betedo/profiler:latest
  • Run docker command on your machine in detached mode
docker run -itd -p 8080:8080 -v /some/storage:/app/storage --restart always --name profiler betedo/profiler:latest

Run with docker-compose

  • Copy this content to docker-compose.yml
version: '3.5'
services:
  profiling:
    container_name: profiler
    image: betedo/profiler:latest
    volumes:
      - .:/app
      - /app/node_modules
    environment:
     - NODE_ENV=${NODE_ENV}
    ports:
      - 8080:8080
    restart: always
  • Run docker-compose up -d command on your machine

Built With

Contributing

Versioning

Authors

License

Acknowledgments

  • Hat tip to anyone whose code was used
  • Inspiration
  • etc

Tag summary

Content type

Image

Digest

Size

500.7 MB

Last updated

over 6 years ago

docker pull betedo/profiler