Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/johnhof/golang-containerpilot
golang + containerpilot docker images for bootstrapping your autopiloted infrastructure
https://github.com/johnhof/golang-containerpilot
Last synced: 20 days ago
JSON representation
golang + containerpilot docker images for bootstrapping your autopiloted infrastructure
- Host: GitHub
- URL: https://github.com/johnhof/golang-containerpilot
- Owner: johnhof
- Created: 2017-07-27T21:21:33.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-07-27T21:22:08.000Z (over 7 years ago)
- Last Synced: 2024-10-05T01:41:09.361Z (about 1 month ago)
- Size: 0 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Golang-containerpilot
Golang + [containerpilot](https://www.joyent.com/containerpilot) docker images for bootstrapping your [autopiloted](https://www.joyent.com/blog/applications-on-autopilot) apps
[**Dockerhub Link**](https://hub.docker.com/r/johnhof/golang-containerpilot/)
**Usage:**
```
FROM johnhof/node-containerpilot:[GOLANG-VERSION]:[CONTAINERPILOT_VERSION]WORKDIR /go/src/app
COPY . .RUN go-wrapper download # "go get -d -v ./..."
RUN go-wrapper install # "go install -v ./..."COPY /path/to/yourcontainerpilot.json /etc/containerpilot.json
# OR
ENV CONTAINERPILOT=/path/to/your/containerpilot.jsonCMD ["go-wrapper", "run"] # ["app"]
```