You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
922 B
YAML

# [MySQL Workbench](https://www.mysql.com/products/workbench/) is a unified
# visual tool for database architects, developers, and DBAs. MySQL Workbench
# provides data modeling, SQL development, and comprehensive administration
# tools for server configuration, user administration, backup, and much more.
---
version: "2.1"
services:
mysql-workbench:
image: ghcr.io/linuxserver/mysql-workbench
container_name: mysql-workbench
environment:
# for GroupID
- PUID=${PUID:-1024}
# for UserID
- PGID=${PGID:-100}
# Specify a timezone to use for example Europe/Amsterdam
- TZ=${TZ:-Europe/Amsterdam}
volumes:
# Users home directory in the container, stores program settings.
- ${BASEDIR:-/volume1/docker}/mysql-workbench/config:/config
ports:
# Mysql Workbench desktop gui.
- 3000:3000
cap_add:
- IPC_LOCK
restart: unless-stopped