⪼ Made with 💜 by realpolyglot.dev
⪼ open -a Docker
⪼ docker compose build && docker compose up
⪼ open 'http://app.local:5000'
⪼ docker ps -a --format "table {{.ID}}\t{{.Names}}\t{{.Ports}}"
CONTAINER ID NAMES PORTS
6769e8809d82 web_1 0.0.0.0:5000->5000/tcp, :::5000->5000/tcp
⪼ docker exec -it web_1 /bin/bash
ɗ⩭⪼ docker ps -a --format "table {{.ID}}\t{{.Names}}\t{{.Ports}}"
CONTAINER ID NAMES PORTS
9c0dfa183bb5 vue-http_1
5029c10aff07 que_1
87bb7c61daed web_1
135aff8b5edd que_1
cb8a4c3637df rdbms_1
041c665663cd red_1
37eab2ad0e64 docker-tutorial 0.0.0.0:80->80/tcp, :::80->80/tcp
ɗ⩭⪼ docker system prune
WARNING! This will remove:
- all stopped containers
- all networks not used by at least one container
- all dangling images
- all dangling build cache
Are you sure you want to continue? [y/N] y
Deleted Containers:
...
Deleted Networks:
default
Deleted Images:
deleted: sha256:...
Deleted build cache objects:
...
Total reclaimed space: 573.3MB
~