Skip to content

Commit

Permalink
fixed docker compose reference
Browse files Browse the repository at this point in the history
  • Loading branch information
rkoval committed Jul 12, 2023
1 parent deefab0 commit eabf817
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
To run the full stack:

```sh
docker-compose pull
docker-compose build # to add local changes
docker-compose up
docker compose pull
docker compose build # to add local changes
docker compose up
```

If running locally (or without a proper DNS), you'll need to add entries for all of the `.local` domains found in the [docker-compose.yml](docker-compose.yml) into your hosts files in order to access the sites through nginx.
If running locally (or without a proper DNS), you'll need to add entries for all of the `.local` domains found in the [docker compose.yml](docker compose.yml) into your hosts files in order to access the sites through nginx.

You can then hit any of the domains in your browser to see the working websites.
6 changes: 3 additions & 3 deletions deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ set -e
eval $(docker-machine env -u)
docker login
docker buildx bake
docker-compose push
docker compose push

docker-machine env centos-docker-machine
eval $(docker-machine env centos-docker-machine)
docker-compose pull
docker-compose up -d
docker compose pull
docker compose up -d
6 changes: 3 additions & 3 deletions start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
set -e

eval $(docker-machine env -u)
docker-compose down -v
docker-compose build
docker-compose up
docker compose down -v
docker compose build
docker compose up

0 comments on commit eabf817

Please sign in to comment.