forked from bbdoc/PoracleWeb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.example.yml
28 lines (28 loc) · 995 Bytes
/
docker-compose.example.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
version: '3.1'
services:
poracle-web:
image: ghcr.io/bbdoc/poracleweb:main
container_name: poracle-web
restart: unless-stopped
tty: true
# for the configuration you can work with environment variables or bind config.php into container
# environment:
# PORACLE_DB_HOST: poracle-db
# PORACLE_DB_DATABASE: poracledb
# PORACLE_DB_USERNAME: poracleuser
# PORACLE_DB_PASSWORD: dbPassword
# PORACLE_DB_PORT: 3306
# ADMIN_ID: 123456789123456
# REDIRECT_URL: https://poracle.map.com #
# DISCORD_BOT_CLIENT_ID: 123456789123456789
# DISCORD_BOT_CLIENT_SECRET: abcdefghijklmnopqrstuvwxyz
# MAP_URL: https://tiles.map.com/staticmap/poracle-web?img=https://raw.githubusercontent>
# MAP_PORACLE_WEB: https://tiles.map.com/staticmap/poracle-web
depends_on:
- poracle-db
- poracle
volumes:
# - ./config.php:/var/www/html/config.php
- /etc/localtime:/etc/localtime:ro
ports:
- 127.0.0.1:9060:80