Skip to content

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

Notifications You must be signed in to change notification settings

dustin-hawkins/ReviveDockerImage

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dockerfile 100.0%