Skip to content

hyperized/docker-phive

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 

Repository files navigation

Phive

Simple, multistage Alpine based https://phar.io/ phive container. Updated monthly

Usage

As single temporary container

docker run \
  --interactive \
  --tty \
  --rm \
  --volume $(pwd):/repo \
  --workdir=/repo \
  hyperized/phive \
  phive install
  
# One-liner
docker run -it --rm -v $(pwd):/repo -w /repo hyperized/phive phive install

As docker-compose service

version: "3"
services:
  phive:
    image: hyperized/phive:latest
    restart: 'no'
    volumes:
      - ./:/repo
      - phive:/root/.phive
    working_dir: /repo
    entrypoint: ["phive"]
    
volumes:
  phive:

Run it as:

docker-compose run --rm phive install

NOTE: The volume phive stores the cached phar files that have been installed by PHIVE, so successive runs process faster.

About

Docker image for Phive

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published