Skip to content

Commit

Permalink
Update documentation about Docker Launch
Browse files Browse the repository at this point in the history
  • Loading branch information
isontheline committed Jun 5, 2024
1 parent 82f22b0 commit 3b344d5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/docs/commands/database-export.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ java -jar backend.jar --command=database-export --output=/path/to/dump.json
```

### Using Docker
<WIPS />
```bash
docker run -v /path/to/output:/output dragon --command=database-export --output=/output/dump.json
```
Expand Down
3 changes: 2 additions & 1 deletion docs/docs/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ Let's discover **dRAGon in less than 5 minutes**.

### Docker
```shell
docker run --rm -p 1985:1985 -v $(pwd)/data:/data --name dragon dragon-okinawa/dragon
docker pull ghcr.io/dragon-okinawa/dragon:latest
docker run -d -p 1985:1985 -v $(pwd)/data:/data --name dragon ghcr.io/dragon-okinawa/dragon:latest
```

### Gradle
Expand Down

0 comments on commit 3b344d5

Please sign in to comment.