https://github.com/pumpkinseed/placeholder
Placeholder service keep up the docker container without resource usage
https://github.com/pumpkinseed/placeholder
Last synced: 4 months ago
JSON representation
Placeholder service keep up the docker container without resource usage
- Host: GitHub
- URL: https://github.com/pumpkinseed/placeholder
- Owner: PumpkinSeed
- Created: 2019-11-25T11:24:14.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-11-25T13:59:37.000Z (almost 6 years ago)
- Last Synced: 2025-06-24T13:26:01.071Z (4 months ago)
- Language: Dockerfile
- Size: 1.95 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# placeholder
Placeholder service keep up the docker container without resource usage. Tool to setup controlled tests for build heavy applications or distributed systems.
#### Usage
Use the docker image as a builder.
```
FROM pumpkinseed/placeholder AS builderFROM alpine
COPY --from=builder /go/bin/placeholder /bin/placeholderRUN {yourservice} &
ENTRYPOINT ["placeholder"]
```- It makes able to control the start/restart flow without the container stop, so when the development of clustered distributed system happens it makes you able to restart the nodes on a controlled flow.
- For that purpose you can use the `docker run -it ...` or there is a simplified solution, [invoker](github.com/PumpkinSeed/invoker).