Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/playsms/docker-playsms
Build docker image for playSMS
https://github.com/playsms/docker-playsms
docker docker-image docker-playsms dockerfile dockerfiles
Last synced: 13 days ago
JSON representation
Build docker image for playSMS
- Host: GitHub
- URL: https://github.com/playsms/docker-playsms
- Owner: playsms
- License: apache-2.0
- Created: 2015-06-08T14:46:37.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-09-22T12:23:39.000Z (about 1 year ago)
- Last Synced: 2024-07-31T14:10:15.049Z (3 months ago)
- Topics: docker, docker-image, docker-playsms, dockerfile, dockerfiles
- Language: Shell
- Homepage: https://hub.docker.com/r/playsms/playsms
- Size: 62.5 KB
- Stars: 36
- Watchers: 11
- Forks: 31
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
docker-playsms
==============Item | Info
--------------- | ---------------
Project update | 230922
Project version | 2.3
playSMS version | 1.4.6This project is playSMS docker image project.
playSMS is a Free and Open Source SMS Gateway Software. Not A Free SMS Service.
Visit [playSMS](http://playsms.org) website for more information.
## Install
Run this for installation, just the first time:
```
docker run -d -p 2222:22 -p 80:80 playsms/playsms:1.4.6
```
Or, run this to bind MySQL database with local `/opt/mysql/lib` instead:```
docker run -d -p 2222:22 -p 80:80 -v /opt/mysql/lib:/var/lib/mysql playsms/playsms:1.4.6
```Get `` of your image:
```
docker ps -l
```Follow logs:
```
docker logs -f
```Once `sshd` runs, change the default SSH password, enter container:
```
ssh -p 2222 root@localhost
```And then change `root` password:
```
passwd root
```Change the SSH password **immediately** to your own strong and secure password.
The default SSH password for user `root` is `changemeplease`
## Usage
Start your container:
```
docker start
```Stop your container:
```
docker stop
```Running command inside the container:
```
docker exec
```Example of running command `playsmsd check` on `CONTAINER_ID` `dce344`:
```
docker exec dce344 playsmsd check
```## Build
To build the image `yourname/playsms`, execute the following command on the `docker-playsms` folder:
```
docker build -t yourname/playsms .
```Push your new image to the docker hub:
```
docker push yourname/playsms
```## Maintainer
- Anton Raharja
## References
- https://github.com/tutumcloud/tutum-docker-lamp
- https://github.com/tutumcloud/tutum-docker-wordpress