Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eclass/apiaryio
Docker Image with alpine linux and apiaryio
https://github.com/eclass/apiaryio
apiary-client docker-image
Last synced: about 1 month ago
JSON representation
Docker Image with alpine linux and apiaryio
- Host: GitHub
- URL: https://github.com/eclass/apiaryio
- Owner: eclass
- License: mit
- Created: 2018-06-13T21:40:47.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-06-06T19:43:23.000Z (over 3 years ago)
- Last Synced: 2024-04-15T21:07:24.593Z (9 months ago)
- Topics: apiary-client, docker-image
- Language: Dockerfile
- Size: 12.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# apiaryio
[![dockeri.co](http://dockeri.co/image/lgatica/apiaryio)](https://hub.docker.com/r/lgatica/apiaryio/)
[![Build Status](https://travis-ci.org/lgaticaq/apiaryio.svg?branch=master)](https://travis-ci.org/lgaticaq/apiaryio)
> Docker Image with alpine linux and apiaryio
Supported tags and respective Dockerfile links
- 0.11.1, latest ([Dockerfile](https://github.com/lgaticaq/apiaryio/blob/master/Dockerfile))
```dockerfile
docker run --rm -it -v $PWD:/usr/src/app -e APIARY_API_KEY=$APIARY_API_KEY lgatica/apiaryio apiary publish --api-name="" --path="/path/to/apiary.apib"
```Example publish with gitlab ci
```yml
apiary:
image: lgatica/apiaryio
stage: deploy
script:
- apiary publish --api-name="" --path="/path/to/apiary.apib"
only:
- master
environment: production
```