Skip to content

Commit

Permalink
use compose.yml instead of docker-compose.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
syntaqx committed Jul 1, 2024
1 parent 6896f45 commit 496b8c7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ CODEOWNERS
LICENSE
Makefile
.env
docker-compose.yml
docker-compose.override.yml
compose.yml
compose.override.yml
README.md
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ dist/

# Local configurations
.env*
docker-compose.override.yml
compose.override.yml
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ setting the listening port. All other configurations are available as CLI flags.
> expectations of a [12factor app][12-factor-config]. But, that will require a
> fair amount of work before the functionality is made available.
Here's an example using `docker-compose.yml` to configure `serve` to use HTTPS:
Here's an example using `compose.yml` to configure `serve` to use HTTPS:

```yaml
version: '3'
Expand All @@ -112,9 +112,9 @@ services:
command: serve -ssl -cert=/etc/ssl/cert.pem -key=/etc/ssl/key.pem -dir=/var/www
```
The project repository provides an example [docker-compose](./docker-compose.yml)
that implements a variety of common use-cases for `serve`. Feel free to use
those to help you get started.
The project repository provides an example [compose](./compose.yml) that
implements a variety of common use-cases for `serve`. Feel free to use those to
help you get started.

### Download the binary

Expand Down
1 change: 0 additions & 1 deletion docker-compose.yml → compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: '3'
services:

# Note: You probably will want to remove the `build: .` lines if you copy
Expand Down

0 comments on commit 496b8c7

Please sign in to comment.