Home [MySQL] Workbench UI Docker
Post
Cancel

[MySQL] Workbench UI Docker

Workbench

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
version: "2.1"
services:
  mysql-workbench:
    image: ghcr.io/linuxserver/mysql-workbench
    container_name: mysql-workbench
    environment:
      PUID: 1000
      PGID: 1000
      TZ: Asia/Seoul
    volumes:
      - ./config:/config
    ports:
      - 3000:3000
    cap_add:
      - IPC_LOCK
    restart: unless-stopped
    platform: linux/x86_64
1

참고

  • https://hub.docker.com/r/linuxserver/mysql-workbench
This post is licensed under CC BY 4.0 by the author.

[MySQL] 초기 작업

[Python] Custom Logger