From 449ad3f6a27614c305f4d662c526ac5ff57f98ad Mon Sep 17 00:00:00 2001 From: Leopere Date: Mon, 8 Oct 2018 21:12:56 -0400 Subject: [PATCH] baseline docker-compose.yml reflector.go compile --- reflector.go/compile/docker-compose.yml | 56 +++++++++++++++++++++++++ 1 file changed, 56 insertions(+) diff --git a/reflector.go/compile/docker-compose.yml b/reflector.go/compile/docker-compose.yml index e69de29..2eb645c 100644 --- a/reflector.go/compile/docker-compose.yml +++ b/reflector.go/compile/docker-compose.yml @@ -0,0 +1,56 @@ +version: '3.4' + +networks: + lbrynet: + external: true + +services: +########### +## MYSQL ## +########### +## MariaDB is currently not supported and neither is later versions of MySQL this may change. +## https://hub.docker.com/r/_/mariadb/ + mysql: + image: mysql.5.7.23 + restart: always + networks: + lbrynet: + ipv4_address: 10.10.0.11 + aliases: + - mysql + environment: + ## These variables are stored in the .env file next to this docker-compose.yml file. + ## I will include a default .env file and .gitignore the ".env" pattern so you should be able to just git pull in the future if you need to. + MYSQL_SERVER: ${MYSQL_SERVER:-10.10.0.11} + MYSQL_USER: ${MYSQL_USER:-changeme} + MYSQL_PASSWORD: ${MYSQL_PASSWORD:-changeme} + MYSQL_DATABASE: ${MYSQL_DATABASE:-reflector} + MYSQL_ROOT_PASSWORD: ${MYSQL_ROOT_PASSWORD:-changeme} + expose: + - 3306 + volumes: + - ./data/db:/var/lib/mysql + +################## +## reflector.go ## +################## + reflector-go: + build: . + restart: always + networks: + lbrynet: + ipv4_address: 10.10.0.20 + environment: + - AWS_ID: ${AWS_ID:-default} + - AWS_SECRET: ${AWS_SECRET:-default} + - BUCKET_REGION: ${BUCKET_REGION:-default} + - BUCKET_NAME: ${BUCKET_NAME:-default} + - DB_USER: ${MYSQL_USER:-changeme} + - DB_PASSWORD: ${MYSQL_PASSWORD:-changeme} + - DB_HOSTIP: ${MYSQL_SERVER:-10.10.0.11} + - DB_PORT: ${DB_PORT:-3306} + - DB_NAME: ${MYSQL_DATABASE:-reflector} + labels: + - "traefik.expose=false" + depends_on: + - mysql