Skip to content

Commit

Permalink
Update docker dev docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
frjo committed Jan 8, 2025
1 parent b6854a2 commit b5dcd22
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions docs/setup/deployment/development/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ To start the docker containers you use the "up --watch" command. This command yo
docker compose --file docker/compose.yaml up --watch
```

This will run "npm watch" as well as the "runserver_plus". All code changes to hypha will be synced in to the conatiner thanks to the docker watch functionality.

### Access the docker environment

Go to [http://hypha.test:9001/](http://hypha.test:9001/)
Expand All @@ -71,6 +73,12 @@ docker exec -i -t hypha-django-dev bash

Here you can issue django commands as normal.

You can also run commands directly, e.g. "uv sync" like this.

```shell
docker exec hypha-django-dev uv sync
```

To get a shell on the container that runs Postgres, use this command.

```shell
Expand Down

0 comments on commit b5dcd22

Please sign in to comment.