forked from platypush/platypush
Created `platypush/install` folder that contains: - Dockerfiles for the supported distros - Lists of required base dependencies for the supported distros - Install and run scripts - Added Debian to supported base images
8 lines
195 B
Bash
Executable file
8 lines
195 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# This script is used as a default entry point for Docker containers
|
|
|
|
DOCKER_CTX=1 platypush \
|
|
--start-redis \
|
|
--config /etc/platypush/config.yaml \
|
|
--workdir /var/lib/platypush
|