Adding the docker login step in client.yml for pulling the EE server docker image
This commit is contained in:
parent
47bed3b89f
commit
170c07136b
3
.github/workflows/client.yml
vendored
3
.github/workflows/client.yml
vendored
|
|
@ -131,7 +131,8 @@ jobs:
|
||||||
- name: Pull server docker container and start it locally
|
- name: Pull server docker container and start it locally
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
docker run -d --net=host --name appsmith-internal-server -p 8080:8080 \
|
echo ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} | docker login -u ${{ secrets.DOCKER_HUB_USERNAME }} --password-stdin
|
||||||
|
docker run -d --net=host --name appsmith-internal-server-ee:release -p 8080:8080 \
|
||||||
--env APPSMITH_MONGODB_URI=mongodb://localhost:27017/appsmith \
|
--env APPSMITH_MONGODB_URI=mongodb://localhost:27017/appsmith \
|
||||||
--env APPSMITH_REDIS_URL=redis://localhost:6379 \
|
--env APPSMITH_REDIS_URL=redis://localhost:6379 \
|
||||||
--env APPSMITH_ENCRYPTION_PASSWORD=password \
|
--env APPSMITH_ENCRYPTION_PASSWORD=password \
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user