firefish/docker-compose.example.yml

49 lines
962 B
YAML
Raw Normal View History

2023-07-20 04:17:05 +09:00
version: "3"
services:
web:
image: registry.code.naskya.net/naskya/firefish
2023-07-20 04:17:05 +09:00
container_name: firefish_web
restart: unless-stopped
depends_on:
- db
- redis
ports:
- "3000:3000"
networks:
- calcnet
# - web
environment:
NODE_ENV: production
volumes:
- ./assets:/firefish/custom/assets
2023-07-20 04:17:05 +09:00
- ./files:/firefish/files
- ./.config:/firefish/.config:ro
2024-01-02 06:11:33 +09:00
- ./neko/volume:/firefish/neko/volume:ro
2023-07-20 04:17:05 +09:00
redis:
restart: unless-stopped
image: docker.io/redis:7.0-alpine
container_name: firefish_redis
networks:
- calcnet
volumes:
- ./redis:/data
db:
restart: unless-stopped
image: docker.io/groonga/pgroonga:latest-alpine-12
2023-07-20 04:17:05 +09:00
container_name: firefish_db
networks:
- calcnet
env_file:
- .config/docker.env
volumes:
- ./db:/var/lib/postgresql/data
networks:
calcnet:
# web:
# external:
# name: web