mirror of
https://github.com/tubearchivist/tubearchivist-server.git
synced 2024-11-14 16:10:12 +00:00
41 lines
806 B
YAML
41 lines
806 B
YAML
version: '3.3'
|
|
|
|
services:
|
|
nginx:
|
|
build: ./tubearchivist/nginx
|
|
container_name: backend_nginx
|
|
restart: always
|
|
ports:
|
|
- "80:80"
|
|
depends_on:
|
|
- tubearchivist
|
|
# main flask site
|
|
tubearchivist:
|
|
container_name: tubearchivist
|
|
build: ./tubearchivist/web
|
|
restart: always
|
|
env_file:
|
|
- ./env/tubearchivist.env
|
|
expose:
|
|
- "8080"
|
|
# backend postgres
|
|
postgres:
|
|
image: postgres:14
|
|
container_name: postgres
|
|
restart: always
|
|
volumes:
|
|
- ./volume/postgres:/var/lib/postgresql/data/
|
|
env_file:
|
|
- ./env/postgres.env
|
|
expose:
|
|
- "5432"
|
|
# redis job monitor
|
|
redis:
|
|
image: redislabs/rejson:latest
|
|
container_name: redis
|
|
restart: always
|
|
ports:
|
|
- "6379:6379"
|
|
volumes:
|
|
- ./volume/redis:/data
|