Files
rogaining_srv/SumasenLibs/excel_lib/docker/docker-compose.yml

21 lines
446 B
YAML
Raw Normal View History

2024-11-03 10:49:42 +00:00
version: '3.8'
services:
python:
build:
context: ..
dockerfile: docker/python/Dockerfile
volumes:
- ..:/app
environment:
- PYTHONPATH=/app
2024-11-06 07:22:24 +00:00
- POSTGRES_DB=rogdb
- POSTGRES_USER=admin
- POSTGRES_PASSWORD=admin123456
- POSTGRES_HOST=localhost
- POSTGRES_PORT=5432
network_mode: "host"
2024-11-03 10:49:42 +00:00
tty: true
2024-11-06 07:22:24 +00:00
container_name: python_container # コンテナ名を明示的に指定
2024-11-03 10:49:42 +00:00