version: '2'
services:
bugzilla-db:
container_name: bugzilla-db
image: postgres:10
restart: always
ports:
- 5432:5432
volumes:
- ./bugzilla-db:/var/lib/postgresql/data
environment:
POSTGRES_DB: "bugs"
POSTGRES_USER: "bugs"
POSTGRES_PASSWORD: "bugs"
bugzilla-svc:
container_name: bugzilla-svc
image: bxwill/bugzilla:5.0.6
restart: always
ports:
- 80:80
- 443:443
environment:
BUGZILLA_ADMIN_EMAIL: "[email protected]"
BUGZILLA_ADMIN_NAME: "administrator"
BUGZILLA_ADMIN_PASS: "baoxian-sz"
BUGZILLA_DB_HOST: "bugzilla-db"
BUGZILLA_DB_PORT: "5432"
BUGZILLA_DB_NAME: "bugs"
BUGZILLA_DB_USER: "bugs"
BUGZILLA_DB_PASS: "bugs"
depends_on:
- bugzilla-db
Waiting for bugzilla container healthy
Content type
Image
Digest
Size
224.5 MB
Last updated
over 6 years ago
docker pull bxwill/bugzilla:5.0.6