bonfire-app/docker-compose.release.yml
2021-09-23 09:19:59 +02:00

60 lines
1.4 KiB
YAML
Executable file

version: "3.5"
services:
web:
# You can build your own image from the source running:
# $ make rel-build
# $ make rel-tag-latest
image: "bonfirenetworks/bonfire:latest-${FLAVOUR}"
container_name: "bonfire_web"
restart: always
ports:
- "4000:4000" # you may want to comment this in production
env_file:
- config/prod/public.env
- config/prod/secrets.env
environment:
- POSTGRES_HOST=db
- SEARCH_MEILI_INSTANCE=http://search:7700
depends_on:
- db
volumes:
- type: bind
source: ./data/uploads
target: /opt/app/data/uploads
proxy:
image: "caddy:alpine"
restart: always
ports:
- "80:80"
- "443:443"
env_file:
- config/prod/public.env
volumes:
- type: bind
source: ./config/deploy/Caddyfile2
target: /etc/caddy/Caddyfile
read_only: true
- type: bind
source: ./data/uploads
target: /frontend/uploads
db:
image: postgis/postgis:12-3.0-alpine
restart: always
volumes:
- "./data/postgres/prod:/var/lib/postgresql/data"
# ports:
# - "5432:5432"
env_file:
- config/prod/public.env
- config/prod/secrets.env
search:
image: getmeili/meilisearch:latest
# ports:
# - "7700:7700"
volumes:
- "./data/search/prod:/data.ms"
env_file:
- config/prod/public.env
- config/prod/secrets.env