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

fix docker description for windows #2114

Merged
merged 1 commit into from
Nov 16, 2023
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: 7 additions & 5 deletions documentation/content/developers/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,24 +129,26 @@ $ docker-compose -f docker/docker-compose.yml -f docker/docker-compose.mac.yml d

6. Execute `$INSTALL_DIR/bin/pulseaudio.exe`

7. Run `docker-compose`
7. Make sure Docker is running (e.g. start Docker Desktop)

8. Run `docker-compose`

``` bash
// Build Images
$ docker-compose -f docker/docker-compose.yml -f docker/docker-compose.windows.yml build
$ docker-compose -f docker/docker-compose.yml build

// Run Docker Environment
$ docker-compose -f docker/docker-compose.yml -f docker/docker-compose.windows.yml up
$ docker-compose -f docker/docker-compose.yml up

// Shuts down Docker containers and Docker network
$ docker-compose -f docker/docker-compose.yml -f docker/docker-compose.windows.yml down
$ docker-compose -f docker/docker-compose.yml down
```

## Test & Develop

The Dockerfile is defined to start all Phoniebox related services.

Open <http://localhost:3001> in your browser to see the web application.
Open <http://localhost:3000> in your browser to see the web application.

While the `webapp` container does not require a reload while working on
it (hot-reload is enabled), you will have to restart your `jukebox`
Expand Down