Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 723 Bytes

File metadata and controls

19 lines (16 loc) · 723 Bytes

dev-environment

This repo contains the Dockerfiles which I use to set up my Docker dev environments. Right now there are two environments, one for Rust and one for Python AI development.

The containers come with a default user called devuser with the password password.They supports connection via SSH.

Building

Run docker-compose build to build the images.

Running

Python

docker-compose up --force-recreate python
ssh devuser@localhost -p 2223

Rust

docker-compose up --force-recreate rust
ssh devuser@localhost -p 2222