Skip to content

memoConnect/docker-pushd

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

docker-pushd

pushd in a docker container.

build
docker build -t pushd .
run

To run the containerized pushd, one need to mount a volume containing APN certificates and a generell configuration. Also some environment variables are required.

docker run \
  -v /your/config/dir/:/mnt/pushd/ \
  -e APN_PUSH_GATEWAY=$APN_PUSH_GATEWAY \
  -e APN_FEEDBACK_ADDRESS=$APN_FEEDBACK_ADDRESS \
  -e GCM_API_KEY=$GCM_API_KEY \
  --link redis:redis \
  pushd

/your/config/dir/ should contain the following file:

  • /mnt/pushd/cert.pem, the apn cert file
  • /mnt/pushd/key.pem, the apn key file
  • settings.coffee, the pushd config file

About

pushd in a docker container.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • CoffeeScript 73.7%
  • Shell 26.3%