Advertisement
vsokoltsov

Untitled

Jan 4th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.51 KB | None | 0 0
  1. version: '3'
  2.  
  3. services:
  4.   postgres:
  5.     container_name: postgres
  6.     image: postgres
  7.     environment:
  8.       POSTGRES_DB: 'idea360'
  9.     volumes:
  10.      - pg_data:/var/lib/postgresql/data
  11.     ports:
  12.      - 5432:5432
  13.  
  14.   idea360:
  15.     image: vsokoltsov/idea360
  16.     container_name: idea360
  17.     build: .
  18.     command: bash -c "python manage.py runserver --host 0.0.0.0"
  19.     env_file: ./.env
  20.     volumes:
  21.      - .:/idea360
  22.     ports:
  23.     - "5000:5000"
  24.     depends_on:
  25.      - postgres
  26.  
  27. volumes:
  28.  pg_data:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement