rDrama/docker-compose.yml

60 lines
1.5 KiB
YAML
Raw Normal View History

2021-07-21 01:12:26 +00:00
services:
2022-10-04 19:48:52 +00:00
files:
container_name: "rDrama"
build:
context: .
volumes:
- "./:/rDrama"
- "./nginx.conf:/etc/nginx/sites-enabled/1"
- "./nginx-serve-static.conf:/etc/nginx/includes/serve-static"
2022-12-12 07:44:13 +00:00
- "./nginx-headers.conf:/etc/nginx/includes/headers"
2022-10-04 19:48:52 +00:00
links:
- "redis"
- "postgres"
ports:
- "80:80"
depends_on:
- redis
- postgres
2022-11-26 23:04:39 +00:00
logging:
options:
max-size: "100k"
max-file: "1"
2021-07-21 01:12:26 +00:00
2022-10-04 19:48:52 +00:00
redis:
container_name: "redis"
2022-10-04 19:48:52 +00:00
image: redis
ports:
- "6379:6379"
2022-11-26 23:04:39 +00:00
logging:
options:
max-size: "100k"
max-file: "1"
2021-07-21 01:12:26 +00:00
2022-10-04 19:48:52 +00:00
postgres:
container_name: "postgres"
2022-10-04 19:48:52 +00:00
image: postgres
2023-01-28 14:41:05 +00:00
command: ["postgres", "-c", "log_statement=all"]
2022-10-04 19:48:52 +00:00
volumes:
- "./schema.sql:/docker-entrypoint-initdb.d/00-schema.sql"
- "./seed-db.sql:/docker-entrypoint-initdb.d/10-seed-db.sql"
environment:
- POSTGRES_HOST_AUTH_METHOD=trust
ports:
- "5432:5432"
2022-11-26 23:04:39 +00:00
logging:
options:
max-size: "100k"
max-file: "1"
opera-proxy:
container_name: "opera-proxy"
image: yarmak/opera-proxy
ports:
- "18080:18080"
2022-11-26 23:04:39 +00:00
logging:
options:
max-size: "100k"
max-file: "1"