Skip to content

Commit

Permalink
instrucciones en el readme para correr la app en contenedores usando …
Browse files Browse the repository at this point in the history
…docker
  • Loading branch information
anelioalvarez committed Nov 8, 2023
1 parent dcadcd1 commit fbacbc4
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,15 @@ In the Makefile, you have the following targets:

**Remember to create a .env file with the necessary environment variables before using the Makefile**
**To know the necessary environment variables you can see the `.env.example` file.**


## Running the Application in Containers - Docker

### Building the Docker Image
`docker build -t backend-tuki .`

### Run a container based on the built image
`docker run --name backend-tuki-container -p 8000:8000 backend-tuki`

### Running the Application in Containers - Docker Compose
`docker-compose up --build`

0 comments on commit fbacbc4

Please sign in to comment.