mirror of
https://github.com/ansible/awx.git
synced 2026-01-11 01:57:35 -03:30
- use awx-python in shebang in dev env - scl enable where needed for rhel7 & container installs - use scram-sha-256 pg user hashing by default - ensure psycopg2 is using the correct PG_CONFIG at build time for the right libpq version
64 lines
1.5 KiB
YAML
64 lines
1.5 KiB
YAML
version: '2'
|
|
services:
|
|
# Primary AWX Development Container
|
|
awx:
|
|
user: ${CURRENT_UID}
|
|
image: ${DEV_DOCKER_TAG_BASE}/awx_devel:${TAG}
|
|
container_name: tools_awx_1
|
|
hostname: awx
|
|
command: /start_development.sh
|
|
environment:
|
|
CURRENT_UID:
|
|
OS:
|
|
RABBITMQ_HOST: rabbitmq
|
|
RABBITMQ_USER: guest
|
|
RABBITMQ_PASS: guest
|
|
RABBITMQ_VHOST: /
|
|
SDB_HOST: 0.0.0.0
|
|
AWX_GROUP_QUEUES: tower
|
|
ports:
|
|
- "8888:8888"
|
|
- "8080:8080"
|
|
- "8013:8013"
|
|
- "8043:8043"
|
|
- "6899-6999:6899-6999" # default port range for sdb-listen
|
|
links:
|
|
- postgres
|
|
- memcached
|
|
- rabbitmq
|
|
# - sync
|
|
# volumes_from:
|
|
# - sync
|
|
working_dir: "/awx_devel"
|
|
volumes:
|
|
- "../:/awx_devel"
|
|
privileged: true
|
|
# A useful container that simply passes through log messages to the console
|
|
# helpful for testing awx/tower logging
|
|
# logstash:
|
|
# build:
|
|
# context: ./docker-compose
|
|
# dockerfile: Dockerfile-logstash
|
|
|
|
# Postgres Database Container
|
|
postgres:
|
|
image: centos/postgresql-10-centos7
|
|
container_name: tools_postgres_1
|
|
environment:
|
|
POSTGRESQL_USER: awx
|
|
POSTGRESQL_PASSWORD: awxpass
|
|
POSTGRESQL_DATABASE: awx
|
|
POSTGRESQL_ADMIN_PASSWORD: postgrespass
|
|
ports:
|
|
- "5432:5432"
|
|
memcached:
|
|
image: memcached:alpine
|
|
container_name: tools_memcached_1
|
|
ports:
|
|
- "11211:11211"
|
|
rabbitmq:
|
|
image: rabbitmq:3-management
|
|
container_name: tools_rabbitmq_1
|
|
ports:
|
|
- "15672:15672"
|