A container for use with ForgeJo actions to deploy a Drupal site.
Find a file
2024-03-26 17:43:15 -04:00
Dockerfile Add dockerfile 2024-03-26 17:38:29 -04:00
known_hosts Add our known hosts 2024-03-26 17:38:43 -04:00
LICENSE Initial commit 2024-03-25 17:05:14 +00:00
README.md Update readme with some basic instructions 2024-03-26 17:43:15 -04:00

DEPLOY CONTAINER

A container for use with ForgeJo runner/actions to deploy a Drupal site.

It is based on the PHP image, adding node, composer, and a few other items we need.

Given node is included, most forgejo/actions should work, but some may have other dependencies.

To do a build/push to our container registry, first create a token at https://git.agaric.com/user/settings and login using your user name and that token with: docker login git.agaric.com

Then, run:

docker build -t agaric/deploycontainer:latest .
docker tag agaric/deploycontainer:latest git.agaric.com/agaric/deploycontainer:latest 
docker push git.agaric.com/agaric/deploycontainer:latest

No, this is not best practice - the latest should only point to latest, and there should be a semver in use.