File: docker-compose.yml

package info (click to toggle)
python-django-etcd-settings 0.1.13%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 328 kB
  • ctags: 276
  • sloc: python: 925; makefile: 210
file content (11 lines) | stat: -rw-r--r-- 137 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
etcd:
  image: elcolio/etcd
  ports:
    - "2379:2379"
app:
  build: .
  volumes:
    - .:/app
  command: make build
  links:
    - etcd