Sign inSign up

meteorjs/meteor-alpine

By meteorjs

•Updated almost 10 years ago

Alpine OS - Meteor 1.4.2.3, Ready to use

Image
5

1.0K

meteorjs/meteor-alpine repository overview

⁠HOW IT WORKS?

⁠Meteor build
$ meteor build /path/for/build --architecture os.linux.x86_64
⁠Dockerfile (in build folder)

FROM meteorjs/meteor-alpine ADD ./meteorBuild.tar.gz /root/app RUN (cd programs/server && npm i && npm run install)

⁠Docker build
$ docker build -t app:1.0.0 .
⁠Run (Minimal config)
$ docker run -d -p 3000:3000 \
      -e MONGO_URL="mongodb://mongo:27017/db" \
      app:1.0.0
⁠Run (Advanced config)

You can overwrite all ENV variables that Meteor has:

$ docker run -d -p 80:3000 \
      -e ROOT_URL=http://myhost \
      -e PORT=3000 \
      -e MONGO_URL="mongodb://mongo:27017/db" \
      -e METEOR_SETTINGS="{}" \
      -e MONGO_OPLOG_URL=mongodb://usr:pass@mongo:27017/local?authSource=admin \
      -e MY_CUSTOM="something" \
      app:1.0.0
⁠For extra smallest meteor images see

meteorjs/base & meteorjs/cli

Tag summary

Content type

Image

Digest

Size

75.8 MB

Last updated

almost 10 years ago

docker pull meteorjs/meteor-alpine