Sign inSign up

atsu666/ioncube

By atsu666

Updated over 3 years ago

Docker Image with Docker PHP + IonCube

Image
2

10K+

atsu666/ioncube repository overview

ioncube

Docker Image with Docker PHP + IonCube

example

run docker-compose up

version: '2'
services:
    # mysql
    mysql:
        image: mysql:5.7
        ports:
            - "3306:3306"
        environment:
            MYSQL_ROOT_PASSWORD: root
    # proxy
    proxy:
        image: jwilder/nginx-proxy:latest
        volumes:
            - /var/run/docker.sock:/tmp/docker.sock:ro
        ports:
            - "80:80"
    # www
    www:
        image: atsu666/ioncube:7.0
        privileged: true
        volumes:
            - ./www:/var/www/html
            - /etc/localtime:/etc/localtime:ro
        links:
            - mysql:mysql
        environment:
            - VIRTUAL_HOST=example.dev
            - APACHE_DOCUMENT_ROOT=/var/www/html

Tag summary

Content type

Image

Digest

sha256:a0ecb07fd

Size

328.7 MB

Last updated

over 3 years ago

docker pull atsu666/ioncube