Skip to content

Commit ffec723

Browse files
committed
Docs: Clarify where to put the bundles
1 parent 1610924 commit ffec723

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

Diff for: readme.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ Docker image to run Meteor apps.
1212

1313
## Tags
1414

15-
- `zodern/meteor:base`
16-
- `zodern/meteor:root` Same as the base, except runs the app as the root user. Notes below about permissions do not apply to this image.
15+
- `zodern/meteor`
16+
- `zodern/meteor:root` Same as the `zodern/meteor`, except runs the app as the root user. Notes below about permissions do not apply to this image.
1717
- `zodern/meteor:slim` Comming soon. Is a smaller image without node or npm preinstalled. During ONBUILD or when starting the app, it will install the correct version.
1818

1919
## How To Use
@@ -28,7 +28,7 @@ In your mup config, change `app.docker.image` to `zodern/meteor`.
2828

2929
### Compressed bundle
3030

31-
You can create the bundle with the `meteor build` command.
31+
You can create the bundle with the `meteor build` command. The bundle should be available in the container at `/bundle/bundle.tar.gz`.
3232

3333
#### Dockerfile
3434

@@ -64,7 +64,9 @@ Run
6464

6565
When using a compressed bundle, the bundle is decompressed and the app's npm dependencies are installed every time the app is started, which can take a while. By using this method instead, both steps are done before the container is started, allowing it to start much faster. Meteor up's `Prepare Bundle` feature uses this.
6666

67-
Before following the instructions in either of the next two sections, build your app with `meteor build --directory ../path/to/put/bundle`
67+
Before following the instructions in either of the next two sections, build your app with `meteor build --directory ../path/to/put/bundle`.
68+
69+
The bundle should be available in the container at `/built_app`.
6870

6971
#### Docker Image
7072

0 commit comments

Comments
 (0)