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

Feat/docker update #18

Merged
merged 2 commits into from
Apr 22, 2024
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -141,3 +141,4 @@ terraform.plan
values.yaml
git-creds.yaml
shared-storage/
.idea
8 changes: 5 additions & 3 deletions INFRASTRUCTURE.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,11 @@ My `docker-compose.yml` file is configured to start all the services our applica
1. **Start Services**: Run the following command to start all services defined in the Docker Compose configuration file:

```shell
docker-compose up -d --build
docker compose up -d --build
```

1. **Verify the Services**: Ensure that all containers are up and running correctly. You can check the status of the containers using: `docker-compose ps`
If you want to run application for multistage docker image version, run `docker compose -f docker-compose.scratch.yml up -d --build`

1. **Stop and Remove Services**: When you are done, you can stop and remove all the services using: `docker-compose down`
1. **Verify the Services**: Ensure that all containers are up and running correctly. You can check the status of the containers using: `docker compose ps`

1. **Stop and Remove Services**: When you are done, you can stop and remove all the services using: `docker compose down`
1 change: 0 additions & 1 deletion docker-compose.scratch.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: '3.8'
services:
app:
build:
Expand Down
1 change: 0 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: '3.8'
services:
app:
build: .
Expand Down