Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

Awesome Lists containing this project

README

        

docker-playsms
==============

Item | Info
--------------- | ---------------
Project update | 230922
Project version | 2.3
playSMS version | 1.4.6

This 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