25 lines
634 B
Markdown
25 lines
634 B
Markdown
# Containers for CI/CD
|
|
|
|
Continuous Integration / Continous Delivery Containers
|
|
|
|
## Current list of Images
|
|
|
|
- `rsync`
|
|
Needed for Delivery of updates efficiently, connecting to the
|
|
server via SSH.
|
|
```bash
|
|
docker pull git.datapeak.it/containers/rsync:latest
|
|
```
|
|
> Hint: Use the workflow with SSH
|
|
|
|
- `static-web`
|
|
Build your `npm` website to be deployed with `rsync`.
|
|
```bash
|
|
docker pull git.datapeak.it/containers/static-web:latest
|
|
```
|
|
|
|
- `cassapeak-be` *(deprecate)*
|
|
Has `rsync` and `npm`, unclear the naming convention and destiny.
|
|
```bash
|
|
docker pull git.datapeak.it/containers/cassapeak-be:latest
|
|
``` |