mirror of
https://github.com/okxlin/appstore.git
synced 2025-07-15 22:02:24 +08:00
22 lines
369 B
YAML
22 lines
369 B
YAML
version: "3"
|
|
services:
|
|
meowfacts:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
args:
|
|
IMAGE_TAG: latest
|
|
container_name: ${CONTAINER_NAME}
|
|
restart: always
|
|
networks:
|
|
- 1panel-network
|
|
ports:
|
|
- "${PANEL_APP_PORT_HTTP}:5000"
|
|
labels:
|
|
createdBy: "Apps"
|
|
|
|
networks:
|
|
1panel-network:
|
|
external: true
|
|
|