https://github.com/cycoresystems/go-meteor
Utilities for Meteor in Go
https://github.com/cycoresystems/go-meteor
docker go meteorjs
Last synced: 8 months ago
JSON representation
Utilities for Meteor in Go
- Host: GitHub
- URL: https://github.com/cycoresystems/go-meteor
- Owner: CyCoreSystems
- License: apache-2.0
- Created: 2019-03-05T20:10:37.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-03-10T02:35:45.000Z (over 7 years ago)
- Last Synced: 2025-09-30T13:44:28.794Z (9 months ago)
- Topics: docker, go, meteorjs
- Language: Go
- Size: 9.77 KB
- Stars: 7
- Watchers: 3
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Meteor utilities for Go
This package contains utilities for working with Meteor applications.
Primarily, this contains the meteor-dockerfilegen CLI tool, which will generate
a multi-stage Dockerfile for a container-deployable Meteor application.
To install this tool, install from a Github [release](https://github.com/CyCoreSystems/go-meteor/releases) or run `go get`:
```
go get github.com/CyCoreSystems/go-meteor/cmd/meteor-dockerfilegen
```
Simply run `meteor-dockerfilegen` from the base directory of your Meteor
application, and it will return the contents of the Dockerfile.
For instance:
```
meteor-dockerfilegen -port 3000 > Dockerfile
```
You can run `meteor-dockerfilegen --help` for help on the various options.
If you have any ideas for making this tool more flexbile, please feel free to
open an issue or pull request!