fisk/docker-compose.yml

144 lines
3.0 KiB
YAML
Raw Normal View History

2022-10-13 14:26:43 +00:00
version: "2.2"
services:
app:
image: xf/fisk:prod
container_name: fisk
build:
context: .
args:
OPERATION: ${OPERATION}
2022-10-13 14:26:43 +00:00
volumes:
- ${PORTAINER_GIT_DIR}:/code
- ${PORTAINER_GIT_DIR}/docker/uwsgi.ini:/conf/uwsgi.ini
2022-10-15 21:36:11 +00:00
- ${APP_DATABASE_FILE}:/conf/db.sqlite3
- fisk_static:${STATIC_ROOT}
2022-10-13 14:26:43 +00:00
#ports:
# - "8000:8000" # uwsgi socket
env_file:
- stack.env
2022-10-13 14:26:43 +00:00
volumes_from:
- tmp
depends_on:
# redis:
# condition: service_healthy
migration:
condition: service_started
collectstatic:
condition: service_started
networks:
- default
- xf
2022-12-13 07:20:49 +00:00
- elastic
2022-10-13 14:26:43 +00:00
migration:
image: xf/fisk:prod
container_name: migration_fisk
build:
context: .
args:
OPERATION: ${OPERATION}
2022-10-13 14:26:43 +00:00
command: sh -c '. /venv/bin/activate && python manage.py migrate --noinput'
volumes:
- ${PORTAINER_GIT_DIR}:/code
2022-10-15 21:36:11 +00:00
- ${APP_DATABASE_FILE}:/conf/db.sqlite3
- fisk_static:${STATIC_ROOT}
2023-02-11 14:00:09 +00:00
volumes_from:
- tmp
2022-10-13 14:26:43 +00:00
env_file:
- stack.env
2022-10-13 14:26:43 +00:00
collectstatic:
image: xf/fisk:prod
container_name: collectstatic_fisk
build:
context: .
args:
OPERATION: ${OPERATION}
2022-10-13 14:26:43 +00:00
command: sh -c '. /venv/bin/activate && python manage.py collectstatic --noinput'
volumes:
- ${PORTAINER_GIT_DIR}:/code
2022-10-15 21:36:11 +00:00
- ${APP_DATABASE_FILE}:/conf/db.sqlite3
- fisk_static:${STATIC_ROOT}
2023-02-11 14:00:09 +00:00
volumes_from:
- tmp
2022-10-13 14:26:43 +00:00
env_file:
- stack.env
2022-10-13 14:26:43 +00:00
nginx:
image: nginx:latest
container_name: nginx_fisk
2022-10-13 14:26:43 +00:00
ports:
- ${APP_PORT}:9999
ulimits:
nproc: 65535
nofile:
soft: 65535
hard: 65535
volumes:
- ${PORTAINER_GIT_DIR}:/code
- ${PORTAINER_GIT_DIR}/docker/nginx/conf.d/${OPERATION}.conf:/etc/nginx/conf.d/default.conf
- fisk_static:${STATIC_ROOT}
2022-10-13 14:26:43 +00:00
volumes_from:
- tmp
networks:
- default
- xf
2022-10-13 14:26:43 +00:00
depends_on:
app:
condition: service_started
# volumes_from:
# - tmp
# depends_on:
# redis:
# condition: service_healthy
tmp:
image: busybox
container_name: tmp_fisk
2022-10-13 14:26:43 +00:00
command: chmod -R 777 /var/run/socks
volumes:
- /var/run/socks
2023-02-11 14:00:09 +00:00
# For caching
redis:
image: redis
container_name: redis_fisk
command: redis-server /etc/redis.conf
ulimits:
nproc: 65535
nofile:
soft: 65535
hard: 65535
volumes:
- ${PORTAINER_GIT_DIR}/docker/redis.conf:/etc/redis.conf
- fisk_redis_data:/data
volumes_from:
- tmp
healthcheck:
test: "redis-cli -s /var/run/socks/redis.sock ping"
interval: 2s
timeout: 2s
retries: 15
# pyroscope:
# image: "pyroscope/pyroscope:latest"
# ports:
# - "4040:4040"
# command:
# - "server"
2022-10-13 14:26:43 +00:00
networks:
default:
driver: bridge
xf:
external: true
2022-12-13 07:20:49 +00:00
elastic:
external: true
2022-10-13 14:26:43 +00:00
volumes:
fisk_static: {}
2023-02-11 14:00:09 +00:00
fisk_redis_data: {}