Skip to content

Commit

Permalink
modify docker-compose.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
ukarim committed Sep 26, 2023
1 parent 9a69de9 commit 930b4b1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,13 @@ docker build -t smscsim .
docker run -p 2775:2775 -p 12775:12775 smscsim
```

3) or use prebuild docker image (from hub.docker.com)
3) or build and run with docker-compose

```
docker-compose up
```

4) or use prebuild docker image (from hub.docker.com)

```
docker run -p 2775:2775 -p 12775:12775 ukarim/smscsim
Expand Down
3 changes: 2 additions & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ version: '3'

services:
smscsim:
image: ukarim/smscsim
build: .
ports:
- '2775:2775'
- '12775:12775'
environment:
- TZ=Asia/Almaty
# - FAILED_SUBMITS=true

0 comments on commit 930b4b1

Please sign in to comment.