mirror of
https://github.com/perfect-panel/ppanel-script.git
synced 2026-05-06 22:24:09 +08:00
32 lines
1.1 KiB
YAML
32 lines
1.1 KiB
YAML
version: '3'
|
|
|
|
services:
|
|
ppanel-admin-web:
|
|
image: ppanel/ppanel-admin-web:latest
|
|
container_name: ppanel-admin-web
|
|
restart: always
|
|
ports:
|
|
- '3000:3000'
|
|
environment:
|
|
NEXT_PUBLIC_API_URL: https://api.example.com
|
|
ppanel-user-web:
|
|
image: ppanel/ppanel-user-web:latest
|
|
container_name: ppanel-user-web
|
|
restart: always
|
|
ports:
|
|
- '3001:3000'
|
|
environment:
|
|
NEXT_PUBLIC_DEFAULT_LANGUAGE: en-US
|
|
NEXT_PUBLIC_SITE_URL: https://example.com
|
|
NEXT_PUBLIC_API_URL: https://api.example.com
|
|
NEXT_PUBLIC_EMAIL: contact@example.com
|
|
NEXT_PUBLIC_TELEGRAM_LINK: https://t.me/example
|
|
NEXT_PUBLIC_TWITTER_LINK: https://twitter.com/example
|
|
NEXT_PUBLIC_DISCORD_LINK: https://discord.com/example
|
|
NEXT_PUBLIC_INSTAGRAM_LINK: https://instagram.com/example
|
|
NEXT_PUBLIC_LINKEDIN_LINK: https://linkedin.com/example
|
|
NEXT_PUBLIC_FACEBOOK_LINK: https://facebook.com/example
|
|
NEXT_PUBLIC_GITHUB_LINK: https://github.com/example/repository
|
|
NEXT_PUBLIC_DEFAULT_USER_EMAIL: user@example.com
|
|
NEXT_PUBLIC_DEFAULT_USER_PASSWORD: password123
|