mirror of
https://github.com/TecharoHQ/anubis.git
synced 2026-02-08 21:09:41 -06:00
* test(nginx): fix tests to work in GHA Closes: #1371 Signed-off-by: Xe Iaso <me@xeiaso.net> * fix(test): does this work lol Signed-off-by: Xe Iaso <me@xeiaso.net> * fix(test): does this other thing work lol Signed-off-by: Xe Iaso <me@xeiaso.net> * fix(test): pki folder location Signed-off-by: Xe Iaso <me@xeiaso.net> --------- Signed-off-by: Xe Iaso <me@xeiaso.net> Signed-off-by: Jason Cameron <git@jasoncameron.dev> Co-authored-by: Jason Cameron <git@jasoncameron.dev>
31 lines
739 B
YAML
31 lines
739 B
YAML
services:
|
|
registry:
|
|
image: distribution/distribution:edge
|
|
restart: always
|
|
|
|
relayd:
|
|
image: ghcr.io/xe/x/relayd
|
|
pull_policy: always
|
|
environment:
|
|
CERT_DIR: /etc/techaro/pki/registry.local.cetacean.club
|
|
CERT_FNAME: cert.pem
|
|
KEY_FNAME: key.pem
|
|
PROXY_TO: http://anubis:3000
|
|
ports:
|
|
- 3004:3004
|
|
volumes:
|
|
- ./pki/registry.local.cetacean.club:/etc/techaro/pki/registry.local.cetacean.club
|
|
|
|
anubis:
|
|
image: ko.local/anubis
|
|
restart: always
|
|
environment:
|
|
BIND: ":3000"
|
|
TARGET: http://registry:5000
|
|
POLICY_FNAME: /etc/techaro/anubis.yaml
|
|
USE_REMOTE_ADDRESS: "true"
|
|
ports:
|
|
- 3000
|
|
volumes:
|
|
- ./anubis.yaml:/etc/techaro/anubis.yaml
|