Skip to content

diddado/ReviveDockerImage

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Docker Pulls

README

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

What is this repository for?

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

  • Version 5.3.1

  • Repository Link

To build the image locally

./build.sh

How do I get set up?

docker pull diddado/revive

Docker Compose

  • Create a docker-compose.yml file, or use the one in the repository
version: '3.3'
services:
    revive:
        build: .
        image: diddado/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

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Dockerfile 92.0%
  • Shell 8.0%