seperrate out gunicorn sockets

This commit is contained in:
Oliver Marks 2017-02-25 12:11:49 +00:00
parent b8952f6452
commit 1be40b5426
3 changed files with 7 additions and 7 deletions

View File

@ -21,17 +21,17 @@ pipeline:
pull: True pull: True
image: appleboy/drone-ssh image: appleboy/drone-ssh
host: maidstone-hackspace.org.uk host: maidstone-hackspace.org.uk
user: ${SSH_USERNAME} user: ${SSH_USER}
key: ${SSH_KEY} key: "${SSH_KEY}"
port: 22 port: 22
script: script:
- echo 'to be added' - echo 'to be added'
publish-live: publish-live:
pull: True # pull: True
image: appleboy/drone-ssh image: appleboy/drone-ssh
user: ${SSH_USERNAME} user: {SSH_USER}
key: ${SSH_KEY} key: {SSH_KEY}
host: maidstone-hackspace.org.uk host: maidstone-hackspace.org.uk
port: 22 port: 22
script: script:

View File

@ -24,7 +24,7 @@ services:
depends_on: depends_on:
- postgres - postgres
- redis - redis
command: /gunicorn.sh command: /live-gunicorn-mhackspace.sh
env_file: .env env_file: .env
volumes: volumes:
- .:/app - .:/app

View File

@ -24,7 +24,7 @@ services:
depends_on: depends_on:
- postgres - postgres
- redis - redis
command: /gunicorn.sh command: /stage-gunicorn-mhackspace.sh
env_file: .env env_file: .env
volumes: volumes:
- .:/app - .:/app