Add Dockerfile

This commit is contained in:
Filip Gralinski 2020-03-11 23:34:37 +01:00
parent 389a018254
commit c58d9b8d11
2 changed files with 54 additions and 0 deletions

30
Dockerfile Normal file
View File

@ -0,0 +1,30 @@
FROM fpco/stack-build:lts-12.26 AS gonito-build
MAINTAINER Filip Gralinski <filipg@ceti.pl>
WORKDIR /root/
RUN apt-get -y update && apt-get -y install libfcgi-dev && apt-get clean && rm -rf /var/lib/apt/lists/*
RUN git clone git://gonito.net/geval && cd geval && git reset --hard 599b08eb2beb207b81073acb9626696f7f0e0171
RUN git clone git://gonito.net/gonito && cd gonito && git reset --hard 389a01825445d99b489dfb91faeb207473830752
WORKDIR gonito
RUN stack install && rm -rf /root/.stack
FROM ubuntu:16.04 AS gonito-run
RUN apt-get -y update && apt-get -y install libcairo2 libpq5 && apt-get clean && rm -rf /var/lib/apt/lists/*
RUN mkdir /gonito
WORKDIR /gonito
COPY --from=gonito-build /root/.local/bin/gonito-bin ./
COPY --from=gonito-build /root/gonito/static static
COPY --from=gonito-build /root/gonito/config config
CMD ./gonito-bin

24
docker-compose.yml Normal file
View File

@ -0,0 +1,24 @@
version: '3'
services:
gonito:
image: loxygen/gonito
depends_on:
- postgres
environment:
- PGUSER=postgres
- PGPASS=$POSTGRES_PASSWORD
- PGHOST=postgres
- ADMINUSER=$GONITO_ADMINUSER
- ADMINPASS=$GONITO_ADMINPASS
- LOCATION=$GONITO_LOCATION
ports:
- "3000:3000"
postgres:
image: postgres
environment:
- POSTGRES_PASSWORD=$POSTGRES_PASSWORD
- POSTGRES_DB=gonito
expose:
- "5432"
volumes:
- "${PG_DATA_VOLUME}:/var/lib/postgresql/data"