This repository has been archived on 2026-05-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
quetz/docker-compose.yml
T
ebner 0bc1aff560
Build and Publish Docker Image / docker (push) Successful in 6s
Update docker-compose.yml
2026-03-24 13:21:51 +01:00

29 lines
884 B
YAML

services:
nginx:
image: nginx:alpine
restart: unless-stopped
ports:
- "80:80"
- "443:443"
volumes:
- /root/nginx.conf:/etc/nginx/nginx.conf:ro
- /etc/letsencrypt/live/lx-cache-conda-01.psi.ch/fullchain.pem:/etc/nginx/certs/fullchain.pem:ro
- /etc/letsencrypt/live/lx-cache-conda-01.psi.ch/privkey.pem:/etc/nginx/certs/privkey.pem:ro
networks:
- backend
quetz-http:
image: gitea.psi.ch/images/quetz:latest
restart: unless-stopped
networks:
- backend
volumes:
- /cache/data:/data
- /root/config.toml:/config.toml
- /etc/letsencrypt/live/lx-cache-conda-01.psi.ch:/certs
command: >
bash -c "quetz create /data --copy-conf /config.toml --exists-ok &&
python /create_proxy_channel.py &&
quetz start /data --host 0.0.0.0 --port 80"
networks:
backend: