28 lines
553 B
YAML
28 lines
553 B
YAML
version: "2"
|
|
|
|
services:
|
|
app:
|
|
image: pathogen/neptune:latest
|
|
build: ./docker
|
|
volumes:
|
|
- ${PORTAINER_GIT_DIR}:/code
|
|
- ${NEPTUNE_LOCAL_SETTINGS}:/code/app/local_settings.py
|
|
- ${NEPTUNE_DATABASE_FILE}:/code/db.sqlite3
|
|
ports:
|
|
- "${NEPTUNE_PORT}:8000"
|
|
env_file:
|
|
- .env
|
|
|
|
# pyroscope:
|
|
# image: pyroscope/pyroscope
|
|
# environment:
|
|
# - PYROSCOPE_LOG_LEVEL=debug
|
|
# ports:
|
|
# - '4040:4040'
|
|
# command:
|
|
# - 'server'
|
|
|
|
networks:
|
|
default:
|
|
external:
|
|
name: pathogen |