20 lines
440 B
YAML
20 lines
440 B
YAML
services:
|
|
pr-helper:
|
|
build: .
|
|
ports:
|
|
- "8080:8080"
|
|
volumes:
|
|
- pr-helper-data:/app/data
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
- GIN_MODE=release
|
|
# MYSQL_HOST in .env should point to your external MySQL
|
|
# Use host.docker.internal to reach the host machine from inside Docker
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
pr-helper-data:
|