26 lines
No EOL
1.2 KiB
Text
Executable file
26 lines
No EOL
1.2 KiB
Text
Executable file
services:
|
|
# DOKEMON Library Edition - A Library Centric version for exposing your compositions to the world.
|
|
#
|
|
# /!\ NEVER USE CREDENTIALS DIRECTLY WITHIN COMPOSITIONS HERE - THEY WILL BE AVAILABLE TO THE WORLD !! /!\
|
|
# Use Variable instead. Exposition will only expose Compositions within "composelibrary" part of Dokemon.
|
|
# We do not recommend to use this version for production use. It's recommended to use beside a real production version.
|
|
#
|
|
# This version is not intented for Production use.
|
|
# This version is tweaked only for library use and exposing over Apaxy v2 Static Server.
|
|
dokemon-library-manager:
|
|
ports:
|
|
- ${DIFFUSION_IP}:${DIFFUSION_ADMIN}:9090
|
|
volumes:
|
|
- ${DOKEMON_DATA_DIR}/dokemon:/data
|
|
- ${COMPOSE_DATA_DIR}:/data/compose
|
|
restart: unless-stopped
|
|
container_name: ${INSTANCE_NAME}-dokemon-library
|
|
image: productiveops/dokemon:latest
|
|
|
|
dokemon-library-exposer-v2:
|
|
image: fusengine/apaxy:latest
|
|
container_name: ${INSTANCE_NAME}-dokemon-exposer
|
|
ports:
|
|
- ${DIFFUSION_IP}:${DIFFUSION_EXPOSED}:80
|
|
volumes:
|
|
- ${COMPOSE_DATA_DIR}:/app/web:ro |