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 has been archived by the owner on Oct 31, 2024. 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 exec
command that's equivalent todocker 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.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-profile
and the note that follows regarding the exact name of the container can be removed.
The text was updated successfully, but these errors were encountered: