Skip to content

Commit

Permalink
docker: add pulp container
Browse files Browse the repository at this point in the history
  • Loading branch information
FrostyX authored and praiskup committed Sep 7, 2024
1 parent 11cdd66 commit 2bdec45
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
18 changes: 18 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -182,10 +182,28 @@ services:
- .:/opt/copr:z
- copr-keygen:/var/lib/copr-keygen:z

pulp:
image: ghcr.io/pulp/pulp:latest
hostname: pulp
stdin_open: true
tty: true
environment:
- PULP_DEFAULT_ADMIN_PASSWORD=admin
ports:
- 5006:80
volumes:
- pulp-storage:/var/lib/pulp:Z
- pulp-database:/var/lib/pgsql
devices:
- /dev/fuse:/dev/fuse


volumes:
results:
copr-keygen:
dist-git:
database:
redis:
resalloc:
pulp-storage:
pulp-database:
13 changes: 13 additions & 0 deletions docker/backend/files/home/copr/.config/pulp/cli.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[cli]
base_url = "http://pulp:80"
api_root = "/pulp/"
domain = "default"
username = "admin"
password = "admin"
cert = ""
key = ""
verify_ssl = true
format = "json"
dry_run = false
timeout = 0
verbose = 0

0 comments on commit 2bdec45

Please sign in to comment.