mirror of
https://github.com/Sheldan/OnePlusBot.git
synced 2026-01-01 15:28:28 +00:00
adding volume configuration to grafana and postgres adding .env file for variables in docker compose adding handling of password for prometheus adding port configuration for more services adding custom starboard notifications updating readme and adding release job adding settings.xml for build
8 lines
163 B
Docker
8 lines
163 B
Docker
FROM openjdk:8-jdk-alpine
|
|
MAINTAINER Sheldan
|
|
VOLUME /tmp
|
|
ADD bot/app.jar /app.jar
|
|
ADD config/* /config/
|
|
ADD wrapper/*.sh /
|
|
RUN chmod +x /start.sh
|
|
CMD ["/start.sh"] |