Skip to content

Commit

Permalink
Merge branch 'main' of github.com:kubefirst/kubefirst
Browse files Browse the repository at this point in the history
  • Loading branch information
johndietz committed Aug 2, 2022
2 parents ad06edc + c80dbe8 commit 79f0c77
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ gitlab.subdomain.example.com
We run everything on isolation with Docker, for that, start the container with:

```bash
docker-compose up kubefirst-dev
docker-compose up kubefirst
```

## Initialization
Expand Down
6 changes: 3 additions & 3 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ version: "3"

services:

kubefirst-dev:
kubefirst:
platform: linux/amd64
build:
context: .
dockerfile: ./build/Dockerfile
container_name: kubefirst-dev
container_name: kubefirst
env_file:
- .env
environment:
Expand All @@ -20,4 +20,4 @@ services:
- ./:/opt/kubefirst
# AWS credentials are strictly used to provision the Kubefirst in your AWS account
- $HOME/.aws:/home/developer/.aws
command: sh -c "./scripts/kubefirst-dev.sh"
command: sh -c "./scripts/kubefirst.sh"
4 changes: 2 additions & 2 deletions scripts/kubefirst-dev.sh → scripts/kubefirst.sh
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

echo "----------------------------------------------------------------------"
echo "- kubefirst-dev container is ready! -"
echo "- Attach to docker container: \"docker exec -it kubefirst-dev bash\" -"
echo "- kubefirst container is ready! -"
echo "- Attach to docker container: \"docker exec -it kubefirst bash\" -"
echo "----------------------------------------------------------------------"
sleep infinity

0 comments on commit 79f0c77

Please sign in to comment.