Skip to content

Commit

Permalink
Support Docker Compose v2
Browse files Browse the repository at this point in the history
  • Loading branch information
tomohiro committed Mar 22, 2022
1 parent 24b52ae commit 9b6bce1
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,20 @@ $ docker pull tomohiro/fluentular:latest
$ docker run -d -p 8080:8080 tomohiro/fluentular:latest
```


#### Own build

Also you can build the app when after clone this repository:

```
$ cd fluentular
$ docker compose up -d
$ docker compose ps
NAME COMMAND SERVICE STATUS PORTS
fluentular-app-1 "bundle exec rackup …" app running (healthy) 0.0.0.0:8080->8080/tcp
```


### AWS Elastic Beanstalk

Supported Platforms:
Expand Down
5 changes: 5 additions & 0 deletions compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
services:
app:
build: .
ports:
- 8080:8080

0 comments on commit 9b6bce1

Please sign in to comment.