15 lines
477 B
YAML
15 lines
477 B
YAML
version: '2'
|
|
|
|
services:
|
|
python:
|
|
tty: true # Enables debugging capabilities when attached to this container.
|
|
# Force docker-compose to use a comprehensive name for the image
|
|
image: bitnami_python:3.6-rhel-7
|
|
# Build action should be successful from any RHEL Host system running the Docker service with subscription managed registered
|
|
# + info: https://access.redhat.com/solutions/253273
|
|
build: .
|
|
ports:
|
|
- 8000:8000
|
|
volumes:
|
|
- .:/app
|