mirror of
https://tvoygit.ru/Djam/r11_urpm-repo.git
synced 2025-02-23 10:12:46 +00:00
26 lines
439 B
YAML
26 lines
439 B
YAML
|
version: '3'
|
||
|
|
||
|
services:
|
||
|
urpm-repo:
|
||
|
image: urpm-repo:latest
|
||
|
# build:
|
||
|
# context: .
|
||
|
# dockerfile: Dockerfile
|
||
|
volumes:
|
||
|
- ./config.yaml:/config.yaml
|
||
|
- html-volume:/var/www/html/urpm-repo
|
||
|
ports:
|
||
|
- "8888:8888"
|
||
|
|
||
|
nginx:
|
||
|
image: nginx:latest
|
||
|
volumes:
|
||
|
- html-volume:/var/www/html/urpm-repo
|
||
|
- ./nginx.conf:/etc/nginx/nginx.conf
|
||
|
ports:
|
||
|
- "8080:8080"
|
||
|
|
||
|
volumes:
|
||
|
html-volume:
|
||
|
|