-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.override.yml.example
43 lines (36 loc) · 1.29 KB
/
docker-compose.override.yml.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
services:
dev:
# Uncomment and modify these environment variables as needed
environment:
# - ADDITIONAL_ENV_VAR=value
# - JUPYTER_TOKEN=your_secure_token_here # Set a specific Jupyter token
# - TZ=UTC # Set timezone
# Uncomment to mount additional volumes
# volumes:
# - ./data:/app/data
# - ~/.aws:/home/developer/.aws:ro # AWS credentials
# Uncomment to expose additional ports
# ports:
# - "8080:8080" # For web applications
# Uncomment to add custom container commands
# command: /bin/bash -c "cd /app && ./init-jupyter.sh"
db:
# Uncomment to modify database settings
# environment:
# - POSTGRES_PASSWORD=your_secure_password_here
# Uncomment to customize PostgreSQL configuration
# command:
# - "postgres"
# - "-c"
# - "max_connections=200"
# - "-c"
# - "shared_buffers=2GB"
# Uncomment to persist database in a named volume
# volumes:
# - postgres_data:/var/lib/postgresql/data
# - ./init-db:/docker-entrypoint-initdb.d # For initialization scripts
pgadmin:
# Uncomment to modify pgAdmin settings
# environment:
# - PGADMIN_DEFAULT_PASSWORD=your_secure_password_here