Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/waelson/simple-demo-travis
Example project that demonstrate use of the Travis CI/CD
https://github.com/waelson/simple-demo-travis
continuous-integration docker javascript kubernetes nodejs travis-ci
Last synced: 21 days ago
JSON representation
Example project that demonstrate use of the Travis CI/CD
- Host: GitHub
- URL: https://github.com/waelson/simple-demo-travis
- Owner: Waelson
- Created: 2020-05-19T10:26:44.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-05-20T09:12:07.000Z (over 4 years ago)
- Last Synced: 2024-11-10T08:37:32.530Z (3 months ago)
- Topics: continuous-integration, docker, javascript, kubernetes, nodejs, travis-ci
- Language: Dockerfile
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Overview
This is a very simple, bare-bones NodeJS project created for you to use with Docker.# Local Setup
* Install dependencies: `npm install`
* Run server: `node server.js`# Container Setup
* Build image: `docker build .`
* Run container with image: `docker run {image_id}` where `image_id` can be retrieved by running `docker images` and found under the column `IMAGE ID`# Container teardown
* Remove container: `docker kill {container_id}` where `container_id` can be retrieved by running `docker ps` and found under the column `CONTAINER ID`