neptune/docker-compose.yml

83 lines
1.8 KiB
YAML
Raw Normal View History

2022-07-29 21:22:22 +00:00
version: "2"
services:
app:
image: pathogen/neptune:latest
2022-11-22 21:53:21 +00:00
container_name: neptune
2022-07-29 08:51:19 +00:00
build: ./docker
2022-07-29 21:22:22 +00:00
volumes:
2022-07-29 08:51:19 +00:00
- ${PORTAINER_GIT_DIR}:/code
- ${NEPTUNE_LOCAL_SETTINGS}:/code/app/local_settings.py
2022-07-29 21:22:22 +00:00
- ${NEPTUNE_DATABASE_FILE}:/code/db.sqlite3
2022-07-29 21:22:22 +00:00
ports:
2022-07-29 08:51:19 +00:00
- "${NEPTUNE_PORT}:8000"
env_file:
- .env
2022-08-18 06:20:30 +00:00
volumes_from:
- tmp
2022-08-16 18:43:55 +00:00
depends_on:
redis:
condition: service_healthy
migration:
condition: service_started
2022-11-22 21:53:21 +00:00
networks:
- default
- pathogen
- elastic
2022-08-16 18:43:55 +00:00
migration:
image: pathogen/neptune:latest
2022-11-22 21:53:21 +00:00
container_name: migration_neptune
2022-08-16 18:43:55 +00:00
command: sh -c '. /venv/bin/activate && python manage.py migrate --noinput'
volumes:
- ${PORTAINER_GIT_DIR}:/code
- ${NEPTUNE_LOCAL_SETTINGS}:/code/app/local_settings.py
- ${NEPTUNE_DATABASE_FILE}:/code/db.sqlite3
volumes_from:
- tmp
depends_on:
redis:
condition: service_healthy
2022-07-29 21:22:22 +00:00
2022-08-03 06:20:30 +00:00
# pyroscope:
# image: pyroscope/pyroscope
# environment:
# - PYROSCOPE_LOG_LEVEL=debug
# ports:
# - '4040:4040'
# command:
# - 'server'
2022-08-02 21:22:22 +00:00
2022-08-18 06:20:30 +00:00
tmp:
image: busybox
2022-11-22 21:53:21 +00:00
container_name: tmp_neptune
command: chmod -R 777 /var/run/socks
2022-08-18 06:20:30 +00:00
volumes:
2022-11-22 21:53:21 +00:00
- /var/run/socks
2022-08-18 06:20:30 +00:00
redis:
image: redis
2022-11-22 21:53:21 +00:00
container_name: redis_neptune
command: redis-server /etc/redis.conf
2022-11-22 21:53:21 +00:00
ulimits:
nproc: 65535
nofile:
soft: 65535
hard: 65535
volumes:
- ${PORTAINER_GIT_DIR}/docker/redis.conf:/etc/redis.conf
volumes_from:
- tmp
healthcheck:
2022-11-22 21:53:21 +00:00
test: "redis-cli -s /var/run/socks/redis.sock ping"
interval: 2s
timeout: 2s
retries: 15
2022-08-18 06:20:30 +00:00
2022-07-29 21:22:22 +00:00
networks:
2022-11-22 21:53:21 +00:00
default:
driver: bridge
pathogen:
external: true
elastic:
external: true