https://github.com/stackstorm/st2packaging-dockerfiles
Dockerfiles used to build and test StackStorm deb/rpm packages
https://github.com/stackstorm/st2packaging-dockerfiles
containers docker dockerfiles stackstorm stackstorm-images
Last synced: 5 months ago
JSON representation
Dockerfiles used to build and test StackStorm deb/rpm packages
- Host: GitHub
- URL: https://github.com/stackstorm/st2packaging-dockerfiles
- Owner: StackStorm
- Created: 2015-08-07T18:19:17.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2024-02-23T13:56:47.000Z (over 1 year ago)
- Last Synced: 2024-02-23T14:50:46.313Z (over 1 year ago)
- Topics: containers, docker, dockerfiles, stackstorm, stackstorm-images
- Language: Dockerfile
- Homepage: https://github.com/StackStorm/st2-packages
- Size: 22.3 MB
- Stars: 31
- Watchers: 19
- Forks: 36
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
# Docker images used to build [StackStorm packages](https://github.com/stackstorm/st2-packages)
[](https://hub.docker.com/r/stackstorm/)> *Note:*
For official StackStorm Docker repo, go https://github.com/StackStorm/st2-dockerfiles
Interested in StackStorm HA in Kubernetes? Check https://github.com/stackstorm/stackstorm-haThis repository contains Dockerfiles, used by StackStorm team for CI and some other specific needs.
## `packagingbuild`
`Dockerfiles` with ready to use environment to build `.deb` and `.rpm` StackStorm packages in [StackStorm/st2-packages](https://github.com/StackStorm/st2-packages/blob/master/docker-compose.circle.yml) CI/CD.See [packagingbuild/](packagingbuild/)
## `packagingtest`
`Dockerfiles` with pre-installed init system used to test `.deb` and `.rpm` StackStorm packages in [StackStorm/st2-packages](https://github.com/StackStorm/st2-packages/blob/master/docker-compose.circle.yml) CI/CD.See [packagingtest/](packagingtest/)
# How To Build Theses Containers (developer)
If you're a developer looking to modify / test / build these containers simply, change into
the container's directory and do the following:``` shell
cd st2packaging-dockerfiles/packagingbuild/focal
docker build -t stackstorm/packagingbuild:focal .cd st2packaging-dockerfiles/packagingtest/focal
docker build -t stackstorm/packagingtest:focal .
```