Skip to content

tbela99/critical-docker

Repository files navigation

CRITICAL PATH GENERATOR

Critical CSS path generator docker app

screenshot

Run the app

Running with docker

$ docker run -p "1080:3000" tbela99/critical

Using podman

$ podman run -p "1080:3000" tbela99/critical

Using docker-compose or podman-compose

Yaml configuration

version: "3.3"
services:
  web:
    image: tbela99/critical
    ports:
      - "127.0.0.1:1080:3000"

Start the container

$ docker-compose up -d

head to http://127.0.0.1:1080 to access the app

Stop the container

$ docker-compose stop