Skip to content

Instantly share code, notes, and snippets.

View xirdneh's full-sized avatar
💭
Helping Celery community

Josue Balandrano Coronel xirdneh

💭
Helping Celery community
View GitHub Profile
@xirdneh
xirdneh / docker-compose.final.yml
Created August 14, 2018 19:20
Tales from the Keyboard: Getting to Know Docker
django:
image: project/portal:local
links:
- potgresql:postgresql
- memcached:memcached
volumes:
- ./../src:/srv/www/project
- static:/srv/www/project/static
- media:/srv/www/project/media
ports:
@xirdneh
xirdneh / docker-compose.override.yml
Created August 14, 2018 19:19
Tales from the Keyaboard: Getting to Know Docker
django:
volumes:
- ./../src:/srv/www/project
- static:/srv/www/project/static
- media:/srv/www/project/media
ports:
- 8001:8000
command: /srv/www/project/bin/run-dev.sh
volumes:
@xirdneh
xirdneh / docker-compose.yml
Created August 14, 2018 19:18
Tales from the Keyboard
django:
image: project/portal:local
links:
- potgresql:postgresql
- memcached:memcached
volumes:
- ./../src:/srv/www/project
- /srv/www/project/static:/srv/www/project/static
- /srv/www/project/media:/srv/www/project/media
ports:
import template from './../../templates/components/push-keys.modal.html';
class SystemPushKeysController {
constructor(SystemsService){
this.SystemsService = SystemsService;
this.form = {};
this.ui = {};
//this.ok.bind(this);
}

Design Document

Environment

VMs

  • Main CMS portal
    • Public Facing portal
    • Admin portal (behind VPN)
  • Main API