You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
docker-bibliogram/docker-compose.yml

53 lines
1005 B

version: '3'
services:
nginx:
build:
context: nginx/.
args:
- IMAGE=${NGINX_IMG:-nginx}
- TAG=${NGINX_TAG:-alpine}
container_name: ${NGINX_CONTAINER_NAME:-bibliogram-nginx}
restart: ${NGINX_RESTART:-unless-stopped}
expose:
- 80
env_file:
- nginx.env
networks:
- default
4 years ago
- socials
bibliogram:
build:
context: bibliogram/
container_name: ${BG_CONTAINER_NAME:-bibliogram}
restart: ${BG_RESTART:-unless-stopped}
expose:
- "10407"
volumes:
- db:/app/db
4 years ago
- ./config/bibliogram.config.js:/app/config.js
4 years ago
networks:
4 years ago
- socials
4 years ago
nitter:
build:
context: nitter/
container_name: ${NI_CONTAINER_NAME:-nitter}
restart: ${NI_RESTART:-unless-stopped}
expose:
- "8080"
volumes:
4 years ago
- ./config/nitter.conf:/src/nitter.conf
networks:
4 years ago
- socials
volumes:
db:
networks:
default:
external:
name: ${NETWORK:-webservices}
4 years ago
socials: