mirror of
https://github.com/pooneyy/1Panel-Appstore.git
synced 2026-04-16 21:49:35 +08:00
- replace local docker build with pre-built image from ghcr.io - simplify docker-compose configuration by removing build arguments
17 lines
303 B
YAML
17 lines
303 B
YAML
services:
|
|
meowfacts:
|
|
image: ghcr.io/pooneyy/meowfacts:latest
|
|
container_name: ${CONTAINER_NAME}
|
|
restart: always
|
|
networks:
|
|
- 1panel-network
|
|
ports:
|
|
- "${PANEL_APP_PORT_HTTP}:5000"
|
|
labels:
|
|
createdBy: "Apps"
|
|
|
|
networks:
|
|
1panel-network:
|
|
external: true
|
|
|