A very simple dashboard for managing Continuous Deployment for PHC projects based on docker, dockerfiles, docker-compose or even shell scripts
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Antonio De Lucreziis c663c7ae1f feat: dockerfiles 10 months ago
public intial commit 11 months ago
scripts feat: working jobs page with sse 11 months ago
src chore: deploy styles 10 months ago
.dockerignore feat: dockerfiles 10 months ago
.env.sample chore: deploy styles 10 months ago
.gitignore feat: working jobs page with sse 11 months ago
.prettierrc prototype of the deploys page using the inspect component 11 months ago
Dockerfile feat: dockerfiles 10 months ago
README.md chore: deploy styles 10 months ago
astro.config.mjs intial commit 11 months ago
package.json chore: deploy styles 10 months ago
pnpm-lock.yaml feat: working jobs page with sse 11 months ago
tsconfig.json feat: working jobs page with sse 11 months ago

README.md

phCD

Continuous Deployment for PHC projects.

Development

# First install the dependencies
$ pnpm install

# Run the local server
$ pnpm dev

# Build all
$ pnpm build

Bootstrapping

Run the following command to bootstrap a phCD instance. As this service doesn't have auth for now, it's strongly recommended to publish only on a local ip like 127.0.0.1 and then access directly or via an ssh tunnel (something like ssh -L 8080:127.0.0.1:8080 server).

$ git clone https://git.phc.dm.unipi.it/phc/phcd
$ docker built . -t phcd

$ echo 'deploys: []' > config.yaml
$ cp .env.sample .env

$ docker run -d \
  --name phcd \
  --restart unless-stopped \
  -p 127.0.0.1:8080:4321 \
  -v ./data.local:./data.local \
  -v ./config.yaml:./config.yaml \
  phcd

Updating

$ git pull
$ docker stop phcd
$ docker built . -t phcd
$ docker run -d \
  --name phcd \
  --restart unless-stopped \
  -p 127.0.0.1:8080:4321 \
  -v /var/run/docker.sock:/var/run/docker.sock \
  -v ./config.yaml:/app/config.yaml \
  phcd

Architecture

Everything is stored in the config.yaml file. This file contains a list of projects to deploy and the configuration for each one.

deploys:
  - name: project1
    url: https://github.com/username/project1
    ref: 
      type: branch
      value: main
    type: dockerfile
    options:
      ports: 
        - 80:8080
      volumes: 
        - /var/www/html:/var/www/html
  - name: project2
    url: ssh://example.org/username/project2.git
    ref:
      type: commit
      value: '1234567'
    type: docker-compose
    options:
      path: ./docker-compose.yml # already the default
  - name: project3
    url: https://github.com/username/project3
    type: shell
    options:
      path: ./deploy.sh # already the default