Sign inSign up

busshi/portfolio

By busshi

Updated about 4 years ago

My personal projects, my blog...

Image
0

135

busshi/portfolio repository overview

Using docker

  • docker pull busshi/portfolio:latest to pull the latest image
  • docker run -p 80:3000 busshi/portfolio:tatest to run the container. Then view it in the browser to http://localhost

Using docker-compose:

Create a docker-compose.yml file and paste this inside:

version: '3'

services:
  portfolio:
    image: busshi/portfolio:latest
    ports:
      - 80:3000
    restart: unless-stopped

Usage:

docker-compose up —build [d]

Then browse to the website at http://localhost

Tag summary

Content type

Image

Digest

sha256:e9f9bfe00

Size

655.2 MB

Last updated

about 4 years ago

docker pull busshi/portfolio