Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
helisfreitas authored Oct 5, 2024
1 parent 2958f75 commit b9063ad
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions my-delivery-registration/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,23 @@ This project uses Quarkus, the Supersonic Subatomic Java Framework.
If you want to learn more about Quarkus, please visit its website: <https://quarkus.io/>.

## Running the application in dev mode
create docker-compose.yml file with content bellow
db:
container_name: quarkusdev-postgresdb
image: postgres:latest
restart: unless-stopped
volumes:
- postgres-data:/var/lib/postgresql/data
environment:
# NOTE: POSTGRES_DB/USER/PASSWORD should match values in app container
POSTGRES_PASSWORD: 1234
POSTGRES_USER: user
POSTGRES_DB: app
run docker composer

```shell script
docker-compose up
```

You can run your application in dev mode that enables live coding using:

Expand Down

0 comments on commit b9063ad

Please sign in to comment.