2018-10-09 15:09:50 +09:00
|
|
|
version: "3"
|
|
|
|
|
|
|
|
services:
|
|
|
|
web:
|
2024-01-04 12:23:05 +09:00
|
|
|
image: registry.code.naskya.net/naskya/firefish
|
2023-07-03 07:18:30 +09:00
|
|
|
container_name: firefish_web
|
2022-12-13 13:32:12 +09:00
|
|
|
restart: unless-stopped
|
2022-11-07 12:04:57 +09:00
|
|
|
depends_on:
|
2019-04-07 21:50:36 +09:00
|
|
|
- db
|
2019-04-14 12:05:12 +09:00
|
|
|
- redis
|
2018-10-09 15:09:50 +09:00
|
|
|
ports:
|
2022-05-15 16:39:23 +09:00
|
|
|
- "3000:3000"
|
2018-10-09 15:09:50 +09:00
|
|
|
networks:
|
2022-12-13 13:32:12 +09:00
|
|
|
- calcnet
|
|
|
|
# - web
|
|
|
|
environment:
|
|
|
|
NODE_ENV: production
|
2020-07-30 21:13:38 +09:00
|
|
|
volumes:
|
2024-01-08 14:58:53 +09:00
|
|
|
- ./custom:/firefish/custom:ro
|
2023-07-03 07:18:30 +09:00
|
|
|
- ./files:/firefish/files
|
|
|
|
- ./.config:/firefish/.config:ro
|
2024-01-02 06:11:33 +09:00
|
|
|
- ./neko/volume:/firefish/neko/volume:ro
|
2018-10-09 15:09:50 +09:00
|
|
|
|
2019-04-14 12:05:12 +09:00
|
|
|
redis:
|
2022-12-13 13:32:12 +09:00
|
|
|
restart: unless-stopped
|
2022-12-08 23:17:00 +09:00
|
|
|
image: docker.io/redis:7.0-alpine
|
2023-07-03 07:18:30 +09:00
|
|
|
container_name: firefish_redis
|
2019-04-14 12:05:12 +09:00
|
|
|
networks:
|
2022-12-13 13:32:12 +09:00
|
|
|
- calcnet
|
2019-04-14 12:05:12 +09:00
|
|
|
volumes:
|
|
|
|
- ./redis:/data
|
2018-10-09 15:09:50 +09:00
|
|
|
|
2019-04-07 21:50:36 +09:00
|
|
|
db:
|
2022-12-13 13:32:12 +09:00
|
|
|
restart: unless-stopped
|
2023-10-28 20:19:25 +09:00
|
|
|
image: docker.io/groonga/pgroonga:latest-alpine-12
|
2023-07-03 07:18:30 +09:00
|
|
|
container_name: firefish_db
|
2018-10-09 15:09:50 +09:00
|
|
|
networks:
|
2022-12-13 13:32:12 +09:00
|
|
|
- calcnet
|
2019-04-07 21:50:36 +09:00
|
|
|
env_file:
|
2022-12-17 06:59:10 +09:00
|
|
|
- .config/docker.env
|
2018-10-09 15:09:50 +09:00
|
|
|
volumes:
|
2019-04-07 21:50:36 +09:00
|
|
|
- ./db:/var/lib/postgresql/data
|
2024-01-18 21:56:43 +09:00
|
|
|
- ./neko/install.sql:/docker-entrypoint-initdb.d/install.sql:ro
|
2018-10-09 15:09:50 +09:00
|
|
|
|
|
|
|
networks:
|
2022-12-13 13:32:12 +09:00
|
|
|
calcnet:
|
2023-05-26 17:05:46 +09:00
|
|
|
# web:
|
|
|
|
# external:
|
|
|
|
# name: web
|