https://github.com/djedou/rust_docker_template
Rust Docker Template
https://github.com/djedou/rust_docker_template
Last synced: about 2 months ago
JSON representation
Rust Docker Template
- Host: GitHub
- URL: https://github.com/djedou/rust_docker_template
- Owner: djedou
- License: mit
- Created: 2023-05-12T20:41:49.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-05-12T21:09:47.000Z (about 2 years ago)
- Last Synced: 2025-01-29T04:26:34.644Z (4 months ago)
- Language: Dockerfile
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rust_docker_template
Rust Docker Template# Build local
cargo build# Run local
cargo run# Build container
docker build -t rust_docker_template .# Run container
docker run --rm -p 3030:3030 --name server rust_docker_template