Skip to content

Commit

Permalink
chore: fix docker-compose break
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdecaf committed Aug 12, 2024
1 parent 6fd5fc0 commit 64ebade
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ build:

.PHONY: setup
setup:
docker-compose up -d --force-recreate --remove-orphans
docker compose up -d --force-recreate --remove-orphans

.PHONY: check
check:
Expand All @@ -45,8 +45,8 @@ endif

.PHONY: teardown
teardown:
-docker-compose down --remove-orphans
-docker-compose rm -sfv
-docker compose down --remove-orphans
-docker compose rm -sfv

docker: update
docker build --pull --build-arg VERSION=${VERSION} -t moov/achgateway:${VERSION} -f Dockerfile .
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ We publish a [public Docker image `moov/achgateway`](https://hub.docker.com/r/mo
Start achgateway and an FTP server:
```
# Inside of ./examples/getting-started/
$ docker-compose up achgateway
$ docker compose up achgateway
...
achgateway_1 | ts=2021-06-18T23:38:06Z msg="public listening on :8484" version=v0.4.1 level=info app=achgateway
achgateway_1 | ts=2021-06-18T23:38:06Z msg="listening on [::]:9494" version=v0.4.1 level=info app=achgateway
Expand Down
4 changes: 2 additions & 2 deletions docs/usage/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ menubar: docs-menu

# Docker

You can download a [docker image called `moov/achgateway`](https://hub.docker.com/r/moov/achgateway/) from Docker Hub or use this repository. However it's recommended to [download the code repository](https://github.com/moov-io/achgateway) and running `docker-compose up` in the root directory.
You can download a [docker image called `moov/achgateway`](https://hub.docker.com/r/moov/achgateway/) from Docker Hub or use this repository. However it's recommended to [download the code repository](https://github.com/moov-io/achgateway) and running `docker compose up` in the root directory.

```
$ docker-compose up achgateway
$ docker compose up achgateway
...
achgateway_1 | ts=2021-06-18T23:38:06Z msg="public listening on :8484" version=v0.4.1 level=info app=achgateway
achgateway_1 | ts=2021-06-18T23:38:06Z msg="listening on [::]:9494" version=v0.4.1 level=info app=achgateway
Expand Down

0 comments on commit 64ebade

Please sign in to comment.