-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Optimizing docker build #2905
Optimizing docker build #2905
Conversation
To run locally without building you only need docker-compose.yaml file and you can run: | ||
|
||
``` | ||
docker-compose up -d |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe worth saying that this command will run the lastest code from master.
Also worth mentioning is it possible to pull the docker without cloning the repo:
for running master branch
docker pull remixproject/remix-ide:master
docker run -p 8080:80 remixproject/remix-ide:master
for running the release branch:
docker pull remixproject/remix-ide:remix_live
docker run -p 8080:80 remixproject/remix-ide:remix_live
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just running
docker pull remixproject/remix-ide
or
docker pull remixproject/remix-ide:latest
will fetch from master.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah note that latest
here is not the latest release but the code in master. The latest release is at remix_live
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes. Will update readme with that.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated.
646aff4
to
1a37ed1
Compare
1a37ed1
to
89d2a56
Compare
No description provided.