Skip to content

Commit

Permalink
Update names to what's used by the v4 schema/image
Browse files Browse the repository at this point in the history
  • Loading branch information
Cpapa97 committed Jul 11, 2021
1 parent a4ac79e commit 9d07593
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ Save this to an accessible location.
In the location where you've stored the downloaded image archive you then will load the image to your local filesystem:

```bash
docker load < functiona_data_database_container_image_v3.tar
docker load < functiona_data_database_container_image_v4.tar
```

OR

```bash
docker load --input functiona_data_database_container_image_v3.tar
docker load --input functiona_data_database_container_image_v4.tar
```

To start the database you can either `Docker` or `docker-compose`:
Expand All @@ -49,7 +49,7 @@ docker-compose up -d database
Running the container without docker-compose is also an option.

```bash
docker run --network="host" --detach microns-phase3-nda-db-v3:latest
docker run --network="host" --detach microns-phase3-nda-database:latest
```

# Access
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ services:
network_mode: 'host'

database:
image: microns-phase3-nda-db-v3:latest # This image should be first loaded from the downloaded tar file, reference SETUP.md for more information.
image: microns-phase3-nda-database:latest # This image should be first loaded from the downloaded tar file, reference SETUP.md for more information.
command: --default-authentication-plugin=mysql_native_password --max-allowed-packet=2147483648
restart: always
network_mode: 'host'

0 comments on commit 9d07593

Please sign in to comment.