1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
# Build the image
```bash
docker build -t trame-app .
```
# Run the image on port 8080
```bash
docker run -it --rm -p 8080:80 trame-app
```
Or if you need some prefix
```bash
docker run -it --rm -p 8080:80 -e TRAME_URL_PREFIX=/my-app/sub/path trame-app
```
# Deploying into CapRover
If that directory was at the root of a git repo you could run the following command line
```bash
caprover deploy
```
That app could also be deployed by running the following set of commands
```bash
tar -cvf trame-app.tar captain-definition Dockerfile app.py setup
caprover deploy -t trame-app.tar
```
|