sp_pg_docker_run: Run a PostgreSQL Docker image in a container

Description Usage Arguments Value Examples

View source: R/sp_docker_functions.R

Description

Creates a container and runs an image in it. The image must be based on the docker.io/postgres:10 image. It will run in the background (--detach) and the container PostgreSQL port will be published to localhost.

Usage

1
2
3
4
5
6
7
sp_pg_docker_run(
  container_name,
  image_tag = "docker.io/postgres:10",
  postgres_password = "postgres",
  postgres_port = 5439,
  docker_network = "sql-pet"
)

Arguments

container_name

character: a valid container name for the container

image_tag

character: a valid image tag (name) for the docker image to run. Default is the base PostgreSQL 10 image, docker.io/postgres:10.

postgres_password

character: the postgres database superuser password. Default is "postgres".

postgres_port

integer: the PostgreSQL port. The default is 5439. Note that the default is 5439 instead of the usual PostgreSQL default, 5432. Why? If PostgreSQL is running on the host or in another container, it probably has claimed port 5432, since that's its default, and our container won't work! So we need to use a different port for our PostgreSQL container.

docker_network

character: the Docker network to host the container. The default is "sql-pet". The network will be created if it does not exist.

Value

If the Docker command fails, sp_pg_docker_run will stop with an error message. If the Docker command succeeds, sp_pg_docker_run will wait 30 seconds for the database to come up with sp_get_postgres_connection. If that fails, sp_get_postgres_connection will stop with an error message. If it succeeds, sp_pg_docker_run will close the connection and return the Docker result.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
## Not run: 
build_log <- sp_make_dvdrental_image("test-dvdrental:latest")
sp_docker_images_tibble()
sp_pg_docker_run(
 container_name = "test-dvdrental",
 image_tag = "test-dvdrental:latest",
 postgres_password = "postgres"
)
sp_docker_containers_tibble()

## End(Not run)

smithjd/sqlpetr documentation built on Feb. 29, 2020, 8:15 p.m.