chrisjpatty / ReviveDockerImage

Revive AdServer docker image based on Alpine Linux with nginx, php7-fpm and revive 5

Home Page:https://hub.docker.com/r/krish512/revive/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Docker Build Status Docker Pulls MicroBadger Size

README

Revive AdServer docker image based on Alpine Linux with nginx, php7-fpm and Revive adserver 5.0.5

What is this repository for?

  • Quick summary: Revive AdServer docker image based on Alpine Linux with nginx, php7-fpm and Revive Ad Server 5.0.5

  • Version 5.0.5

  • Repository Link

How do I get set up?

  • Usage: "docker pull dustinhawkins/revive"

Docker Compose

  • Create a docker-compose.yml file, or use the one in the repository
version: '3.3'
services:
    revive:
        build: .
        image: dustinhawkins/revive
        container_name: revive
        ports:
         - '8080:80'
        restart: always
        depends_on:
                - mysql
    mysql:
        image: mysql:5.7
        restart: always
        environment:
         - MYSQL_DATABASE=revive
         - MYSQL_USER=user
         - MYSQL_PASSWORD=password

docker-compose up -d

Visit http://localhost:8080/ and complete the setup using the following for MySQL settings:

  • host = mysql
  • user = user
  • password = password

About

Revive AdServer docker image based on Alpine Linux with nginx, php7-fpm and revive 5

https://hub.docker.com/r/krish512/revive/


Languages

Language:Dockerfile 100.0%