Skip to content

Commit 9e9b8af

Browse files
authored
Merge pull request #385 from ByteInternet/add-bookworm-images-for-hypernode-deploy
Add debian bookworm hypernode-deploy images
2 parents 50a2b57 + c6992e5 commit 9e9b8af

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

docs/best-practices/testing/hypernode-docker.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ The `hypernode-docker` image has SSH, PHP, NGINX, MySQL, Redis, Varnish and Elas
2323

2424
First of all download the latest version of Docker for Windows or Mac from the [Docker website](https://www.docker.com/get-started) and make sure to install Docker on your computer. If you are working with Linux you can find all the info to install Docker in their documentation [Docker Docs](https://docs.docker.com/install).
2525

26-
Now you need to decide which \*\*[image](https://github.com/byteinternet/hypernode-docker)\*\*you need. We've several images, all with other PHP and MySQL versions. After you decided which images fits your requirements you can pull the image to your local machine and start a new Docker container. In the below example we used the image "hypernode-buster-docker-php74-mysql57". If you need another you can change that name in both commands below to the image you want to use.
26+
Now you need to decide which \*\*[image](https://github.com/byteinternet/hypernode-docker)\*\*you need. We've several images, all with other PHP and MySQL versions. After you decided which images fits your requirements you can pull the image to your local machine and start a new Docker container. In the below example we used the image "hypernode-bookworm-docker-php84-mysql80". If you need another you can change that name in both commands below to the image you want to use.
2727

2828
### Start the Docker and logging in
2929

3030
Starting a container
3131

3232
```bash
33-
docker pull docker.hypernode.com/byteinternet/hypernode-buster-docker-php74-mysql57:latest
34-
docker run -p 222:22 -p 8080:80 -p 8025:8025 docker.hypernode.com/byteinternet/hypernode-buster-docker-php74-mysql57:latest
33+
docker pull docker.hypernode.com/byteinternet/docker.hypernode.com/byteinternet/hypernode-bookworm-docker-php84-mysql80:latest
34+
docker run -p 222:22 -p 8080:80 -p 8025:8025 docker.hypernode.com/byteinternet/docker.hypernode.com/byteinternet/hypernode-bookworm-docker-php84-mysql80:latest
3535
```
3636

3737
This makes the SSH, HTTP, and Mailhog ports available on the localhost. If you need any other ports (Such as 443 for HTTPS, or 2222 for sftp) available, you can insert these in the command above. In this example you should use the following command to connect to the container:

docs/ecommerce-applications/shopware-5/how-to-install-shopware-5-on-hypernode-docker.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ The Hypernode Docker Image can be used to set up a local test environment for Ma
1919

2020
Before you can start a Docker container make sure that Docker is running. Next you need to choose which Docker image you want to run depending on the PHP and MySQL version. You can see all available images **[here](https://github.com/byteinternet/hypernode-docker).**
2121

22-
After you've chosen the image you need to pull the image to your local machine. Once the image is pulled, you can start a Docker container from that image. Use the format below and if needed change the name "hypernode-buster-docer-php7.4-mysql57" to your right version.
22+
After you've chosen the image you need to pull the image to your local machine. Once the image is pulled, you can start a Docker container from that image. Use the format below and if needed change the name "hypernode-bookworm-docker-php84-mysql80" to your right version.
2323

2424
```bash
25-
docker pull docker.hypernode.com/byteinternet/hypernode-buster-docker-php74-mysql57:latest
26-
docker run -p 222:22 -p 8080:80 -p 8025:8025 docker.hypernode.com/byteinternet/hypernode-buster-docker-php74-mysql57:latest
25+
docker pull docker.hypernode.com/byteinternet/hypernode-bookworm-docker-php84-mysql80:latest
26+
docker run -p 222:22 -p 8080:80 -p 8025:8025 docker.hypernode.com/byteinternet/hypernode-bookworm-docker-php84-mysql80:latest
2727
```
2828

2929
This will expose port 222 on the container and port 8080 on the localhost. In this example you should use the following command to connect to the container:

docs/ecommerce-applications/shopware-6/how-to-install-shopware-6-on-hypernode-docker.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ The Hypernode Docker Image can be used to set up a local test environment for Ma
1919

2020
Before you can start a Docker container make sure that Docker is running. Next you need to choose which Docker image you want to run depending on the PHP and MySQL version. You can see all available **[images](https://github.com/byteinternet/hypernode-docker)** here.
2121

22-
After you've chosen the image, you need to pull the image to your local machine. Once the image is pulled, you can start a Docker container from that image. Use the format below and if needed change the name "hypernode-buster-docer-php7.4-mysql57" to your right version.
22+
After you've chosen the image, you need to pull the image to your local machine. Once the image is pulled, you can start a Docker container from that image. Use the format below and if needed change the name "hypernode-bookworm-docker-php84-mysql80" to your right version.
2323

2424
```bash
25-
docker pull docker.hypernode.com/byteinternet/hypernode-buster-docker-php74-mysql57:latest
26-
docker run -p 222:22 -p 8080:80 -p 8025:8025 docker.hypernode.com/byteinternet/hypernode-buster-docker-php74-mysql57:latest
25+
docker pull docker.hypernode.com/byteinternet/hypernode-bookworm-docker-php84-mysql80:latest
26+
docker run -p 222:22 -p 8080:80 -p 8025:8025 docker.hypernode.com/byteinternet/hypernode-bookworm-docker-php84-mysql80:latest
2727
```
2828

2929
This will expose port 222 on the container and port 8080 on the localhost. In this example you should use the following command to connect to the container:

0 commit comments

Comments
 (0)