Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docker.md #289

Merged
merged 1 commit into from
Sep 8, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions src/pages/kb/open-source/dev-guide/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,18 +75,6 @@ Now the dev server is available at `http://localhost:8080`. It rebuilds the fron
code when you change it and refreshes the browser. All the API calls are proxied to
`localhost:5000` (the server running in Docker).

### Restarting Celery Workers

The Web server will restart on code changes, but the Celery workers won't. To restart
the Celery workers run:

```
docker-compose restart worker
```

(or just stop all the running services with `docker-compose stop` then run them again
with `docker-compose up -d`)

### Installing new Python packages (requirements.txt)

If you pulled a new version with new packages or added some yourself, you will need to
Expand Down