Skip to content

Commit

Permalink
docs: fix incorrect command for Docker Compose
Browse files Browse the repository at this point in the history
  • Loading branch information
Pyker committed Dec 13, 2024
1 parent 041c3a8 commit a23b767
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,12 @@ docker build --no-cache -t solder -f ./docker/Dockerfile .

Run the setup to prepare your instance. You might need to modify `start.sh` to disable setting a new app key if you already have one. Make sure not to run this more than once unless you want a new app key.
```bash
docker-compose -f compose-setup.yml up setup
docker compose -f compose-setup.yml up setup
```

Finally, you can turn on your instance of Solder.
```bash
docker-compose up -d --remove-orphans
docker compose up -d --remove-orphans
```

(The `--remove-orphans` flag is necessary to remove the container used in the setup.)
Expand Down

0 comments on commit a23b767

Please sign in to comment.