File: docker-compose.yml

package info (click to toggle)
django-qr-code 4.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,108 kB
  • sloc: python: 3,914; sh: 107; makefile: 20
file content (15 lines) | stat: -rw-r--r-- 256 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
services:
  django-qr-code:
    build:
      context: .
      dockerfile: Dockerfile
      args:
        - PYTHON_VERSION
    volumes:
      - ./:/usr/src/app
    environment:
      - APP_PORT=8910
    expose:
      - "8910"
    ports:
      - "8910:8910"