This setup uses Docker and Docker Compose. If you do not have Docker yet, see Docker Setup and Docker Compose.
Create a docker-compose.yml file. Place the extracted Inout Adserver files in ./app before starting.
services:
db:
image: mariadb:11
environment:
MYSQL_DATABASE: inout
MYSQL_USER: inout
MYSQL_PASSWORD: change-me
MYSQL_ROOT_PASSWORD: change-me
volumes:
- db_data:/var/lib/mysql
app:
image: php:8.2-apache
volumes:
- ./app:/var/www/html
ports:
- "8086:80"
depends_on:
- db
volumes:
db_data:
Start the stack:
docker compose up -d
Then open http://localhost:8086 and run the web installer.
💼 Professional Services: Need expert help with your Inout Adserver Docker deployment? We offer consulting, training, and support. Contact our team →