31 lines
591 B
YAML
31 lines
591 B
YAML
version: '3.3'
|
|
services:
|
|
guacd:
|
|
image: dushixiang/guacd:latest
|
|
volumes:
|
|
- ../data:/usr/local/next-terminal/data
|
|
ports:
|
|
- "4822:4822"
|
|
restart:
|
|
always
|
|
mysql:
|
|
image: mysql:8.0
|
|
environment:
|
|
MYSQL_DATABASE: next-terminal
|
|
MYSQL_USER: next-terminal
|
|
MYSQL_PASSWORD: next-terminal
|
|
MYSQL_ROOT_PASSWORD: next-terminal
|
|
volumes:
|
|
- ../data/mysql:/var/lib/mysql
|
|
ports:
|
|
- "3306:3306"
|
|
restart:
|
|
always
|
|
|
|
networks:
|
|
next-terminal:
|
|
ipam:
|
|
driver: default
|
|
config:
|
|
- subnet: 172.77.77.0/24
|