Develop applications with Rust and PostgreSQL. Includes a Rust application container and PostgreSQL server.
Metadata | Value |
---|---|
Contributors | The VS Code Team |
Categories | Core, Languages |
Definition type | Docker Compose |
Available image variants | buster, bullseye (full list) |
Works in Codespaces | Yes |
Container host OS support | Linux, macOS, Windows |
Container OS | Debian |
Languages, platforms | Rust |
This definition creates two containers, one for Rust and one for PostgreSQL. VS Code will attach to the Rust dev container, and from within that container the PostgreSQL container will be available on localhost
port 5432. The .env
file sets the default credentials. The default database is named postgres
with a user of postgres
whose password is postgres
, and if desired this may be changed in docker-compose.yml
. Data is stored in a volume named postgres-data
.
While the definition itself works unmodified, you can select the version of Debian the container uses by updating the VARIANT
arg in .devcontainer/docker-compose.yml
(and rebuilding if you've already created the container).
build:
context: .
dockerfile: Dockerfile
args:
# Use the VARIANT arg to pick a Debian OS version: buster, bullseye
# Use bullseye when on local on arm64/Apple Silicon.
VARIANT: buster
-
If this is your first time using a development container, please see getting started information on setting up Remote-Containers or creating a codespace using GitHub Codespaces.
-
Start VS Code and open your project folder or connect to a codespace.
-
Press F1 select and Add Development Container Configuration Files... command for Remote-Containers or Codespaces.
Note: If needed, you can drag-and-drop the
.devcontainer
folder from this sub-folder in a locally cloned copy of this repository into the VS Code file explorer instead of using the command. -
Select this definition. You may also need to select Show All Definitions... for it to appear.
-
Finally, press F1 and run Remote-Containers: Reopen Folder in Container or Codespaces: Rebuild Container to start using the definition.
You can add other services to your docker-compose.yml
file as described in Docker's documentation. However, if you want anything running in this service to be available in the container on localhost, or want to forward the service locally, be sure to add this line to the service config:
# Runs the service on the same network as the database container, allows "forwardPorts" in devcontainer.json function.
network_mode: service:[$SERVICENAME]
This definition includes some test code that will help you verify it is working as expected on your system. Follow these steps:
- If this is your first time using a development container, please follow the getting started steps to set up your machine.
- Clone this repository.
- Start VS Code, press F1, and select Remote-Containers: Open Folder in Container...
- Select the
containers/rust-postgres
folder. - After the folder has opened in the container, press F5 to start the project.
- You should see "Hello, VS Code Remote - Containers!" in the Debug Console after the program executes.
- You can also run test.sh in order to build and test the project.
- From here, you can add breakpoints or edit the contents of the
test-project
folder to do further testing.
Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the MIT License. See LICENSE.