Skip to content

Latest commit

 

History

History
45 lines (26 loc) · 840 Bytes

README.md

File metadata and controls

45 lines (26 loc) · 840 Bytes

Playlistr

This project was generated using Nx.

Docker Commands

List images

docker images

Check content of image

docker run -it backend bash

docker run -it frontend bash

...etc

Build specific target

docker build --target backend -t backend .

docker build --target frontend -t frontend .

...etc

Run container

docker run --rm -it -p 3333:3333 backend

docker run --rm -it -p 8080:80 frontend

...etc

List running containers

List all

docker ps -a

Only active

docker ps

Kill all running containers

docker rm -f $(docker ps -q)

In einen Container hängen

docker-compose exec fe bash