Skip to content

Instantly share code, notes, and snippets.

@kubo6472
Created January 29, 2026 20:21
Show Gist options
  • Select an option

  • Save kubo6472/a97924b331afef6ec80f56ae62138555 to your computer and use it in GitHub Desktop.

Select an option

Save kubo6472/a97924b331afef6ec80f56ae62138555 to your computer and use it in GitHub Desktop.
frankenpress working (seemingly)
services:
wordpress:
image: notglossy/frankenpress:latest
restart: always
ports:
- "80:80"
- "443:443"
environment:
WORDPRESS_DB_HOST: db
WORDPRESS_DB_USER: exampleuser
WORDPRESS_DB_PASSWORD: examplepass
WORDPRESS_DB_NAME: exampledb
SERVER_NAME: :80
volumes:
- ./wp:/var/www/html
depends_on:
- db
tty: true
db:
image: yobasystems/alpine-mariadb
restart: always
environment:
MYSQL_DATABASE: exampledb
MYSQL_USER: exampleuser
MYSQL_PASSWORD: examplepass
MYSQL_ROOT_PASSWORD: examplepass
volumes:
- ./db:/var/lib/mysql
redis:
image: yobasystems/alpine-redis
volumes:
- ./redis:/data
restart: always
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment