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
{{ message }}
This repository was archived by the owner on Mar 7, 2025. It is now read-only.
Compose has a docker compose exec command that's equivalent to docker exec -ti and frees you from having to know/guess/find the name of the container: you just use the name of the service as declared in the compose file and Compose maps it for you.
Compose has a
docker compose execcommand that's equivalent todocker exec -tiand frees you from having to know/guess/find the name of the container: you just use the name of the service as declared in the compose file and Compose maps it for you.In https://help.penpot.app/technical-guide/getting-started/#create-users-using-cli, the command can thus be replaced with
docker compose exec penpot-backend python3 ./manage.py create-profileand the note that follows regarding the exact name of the container can be removed.