You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docker-compose build
docker-compose up # run api-rust http://localhost:8080 app-nuxt http://localhost:3000
docker-compose up --build # run api-rust http://localhost:8080 app-nuxt http://localhost:3000# Run diesel migration for create all tables migrations on database
docker-compose run --rm app ./diesel migration run # Or
docker-compose run --rm app /bin/bash
./diesel migration run
# Run db:seed For populate data faker on database
docker-compose run --rm app ./seed # Or
docker-compose run --rm app /bin/bash
./seed
# Api Rust individual
docker-compose build api-rust
docker-compose run --rm api-rust
# run http://0.0.0.0:8080# App Nuxt individual
docker-compose build app-nuxt
docker-compose run --rm app-nuxt
# run http://0.0.0.0:3000# Optional
docker-compose ps
docker-compose stop
docker-compose down
docker-compose run --rm app bash
docker network create rustnet
# sudo docker rmi --force $(docker images -f "dangling=true" -q)