Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
docker-py
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
docker-py
Commits
6529fa59
Kaydet (Commit)
6529fa59
authored
Mar 03, 2017
tarafından
Frank Sachsenheim
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Makes docs builds faster and ensures proper ownership
Signed-off-by:
Frank Sachsenheim
<
funkyfuture@riseup.net
>
üst
f127a9ff
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
11 deletions
+11
-11
.dockerignore
.dockerignore
+1
-2
Dockerfile-docs
Dockerfile-docs
+8
-7
Makefile
Makefile
+2
-2
No files found.
.dockerignore
Dosyayı görüntüle @
6529fa59
...
...
@@ -13,5 +13,4 @@ html/*
__pycache__
# Compiled Documentation
site/
Makefile
docs/_build
Dockerfile-docs
Dosyayı görüntüle @
6529fa59
FROM python:3.5
RUN mkdir /src
WORKDIR /src
ARG uid=1000
ARG gid=1000
COPY requirements.txt /src/requirements.txt
RUN pip install -r requirements.txt
RUN addgroup --gid $gid sphinx \
&& useradd --uid $uid --gid $gid -M sphinx
COPY docs-requirements.txt /src/docs-requirements.txt
RUN pip install -r docs-requirements.txt
WORKDIR /src
COPY requirements.txt docs-requirements.txt ./
RUN pip install -r requirements.txt -r docs-requirements.txt
COPY . /src
USER sphinx
Makefile
Dosyayı görüntüle @
6529fa59
...
...
@@ -16,7 +16,7 @@ build-py3:
.PHONY
:
build-docs
build-docs
:
docker build
-t
docker-sdk-python-docs
-f
Dockerfile-docs .
docker build
-t
docker-sdk-python-docs
-f
Dockerfile-docs
--build-arg
uid
=
$(
shell
id
-u
)
--build-arg
gid
=
$(
shell
id
-g
)
.
.PHONY
:
build-dind-certs
build-dind-certs
:
...
...
@@ -77,7 +77,7 @@ flake8: build
.PHONY
:
docs
docs
:
build-docs
docker run
--rm
-it
-v
`
pwd
`
:/
code docker-sdk-python-docs sphinx-build docs .
/_build
docker run
--rm
-it
-v
`
pwd
`
:/
src docker-sdk-python-docs sphinx-build docs docs
/_build
.PHONY
:
shell
shell
:
build
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment