Skip to content

Instantly share code, notes, and snippets.

@PacifiK2460
Created February 27, 2024 00:47
Show Gist options
  • Save PacifiK2460/00ccc2e2c2b9c87e24332833288c277b to your computer and use it in GitHub Desktop.
Save PacifiK2460/00ccc2e2c2b9c87e24332833288c277b to your computer and use it in GitHub Desktop.
ISPMail Docker Compose WIP
version: '3.1'
services:
# Maria DB Container
db:
image: mariadb
restart: always
environment:
MARIADB_ROOT_PASSWORD: ${MARIADB_ROOT_PASSWORD}
volumes:
- ${MARIADB_PATH}:/var/lib/mysql
adminer:
image: adminer
restart: always
ports:
- 8080:8080
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment