neptune/docker/docker-compose.prod.yml

60 lines
1.4 KiB
YAML
Raw Normal View History

2022-07-29 08:51:19 +00:00
version: "2"
services:
app:
2022-07-29 21:22:22 +00:00
image: pathogen/neptune:latest
build: ./docker/prod
2022-07-29 08:51:19 +00:00
volumes:
- ${PORTAINER_GIT_DIR}:/code
- ${PORTAINER_GIT_DIR}/docker/prod/uwsgi.ini:/conf/uwsgi.ini
- ${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 08:51:19 +00:00
ports:
- "${NEPTUNE_PORT}:8000" # uwsgi socket
2022-07-29 08:51:19 +00:00
env_file:
- ../stack.env
volumes_from:
- tmp
2022-08-16 18:46:13 +00:00
depends_on:
redis:
condition: service_healthy
migration:
condition: service_started
2022-08-16 18:43:55 +00:00
migration:
image: pathogen/neptune:latest
2022-09-06 11:11:51 +00:00
build: ./docker/prod
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
tmp:
image: busybox
command: chmod -R 777 /var/run/redis
volumes:
- /var/run/redis
redis:
image: redis
command: redis-server /etc/redis.conf
volumes:
- ${PORTAINER_GIT_DIR}/docker/redis.conf:/etc/redis.conf
volumes_from:
- tmp
healthcheck:
test: "redis-cli -s /var/run/redis/redis.sock ping"
interval: 2s
timeout: 2s
retries: 15
2022-07-29 08:51:19 +00:00
networks:
default:
external:
name: pathogen