2023-11-13 21:42:59 +00:00
|
|
|
FROM gogs/gogs:0.13
|
2022-12-19 13:11:21 +00:00
|
|
|
|
|
|
|
# In docker "custom" dir is /data/gogs/ and there is no need to create named "custom" dir
|
|
|
|
# there, /data/gogs/ works by default as custom.
|
|
|
|
WORKDIR /data/gogs/
|
|
|
|
RUN mkdir -p templates/inject && mkdir -p public/css/themes \
|
|
|
|
&& mkdir -p public/img
|
|
|
|
|
|
|
|
# ADD ./themes /data/gogs/public/css/themes
|
2023-11-13 21:42:59 +00:00
|
|
|
# ADD ./img /data/gogs/public/img/
|