Browse Source

Adding a project-level Dockerfile & docker-compose script

for-closed-social
Joshua Delsman 9 years ago
parent
commit
406efbf3f5
2 changed files with 29 additions and 0 deletions
  1. +17
    -0
      Dockerfile
  2. +12
    -0
      docker-compose.yml

+ 17
- 0
Dockerfile View File

@ -0,0 +1,17 @@
FROM google/golang:latest
ENV TAGS="sqlite redis memcache cert" USER="git" HOME="/home/git"
COPY . /gopath/src/github.com/gogits/gogs/
WORKDIR /gopath/src/github.com/gogits/gogs/
RUN go get -v -tags="$TAGS" github.com/gogits/gogs \
&& go build -tags="$TAGS" \
&& useradd -d $HOME -m $USER \
&& chown -R $USER .
USER $USER
ENTRYPOINT [ "./gogs" ]
CMD [ "web" ]

+ 12
- 0
docker-compose.yml View File

@ -0,0 +1,12 @@
web:
build: .
links:
- mysql
ports:
- "3000:3000"
mysql:
image: mysql
environment:
- MYSQL_ROOT_PASSWORD=gogs
- MYSQL_DATABASE=gogs

Loading…
Cancel
Save