-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
25 lines (25 loc) · 808 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
25 lines (25 loc) · 808 Bytes
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
services:
coretex:
build:
context: .
dockerfile: Dockerfile
image: coretex
container_name: ctx-os
user: "${HOST_UID:-1000}:${HOST_GID:-1000}"
environment:
- PYTHONUNBUFFERED=1
- PATH=/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games
- DENO_INSTALL=/opt/deno
- DENO_DIR=/tmp/deno_cache
volumes:
# Mount the configuration and memory state securely
- ./System/config:/opt/coretex/System/config
- ./Meta:/opt/coretex/Meta
- ./.env:/opt/coretex/.env
- ./logs:/opt/coretex/logs
# Dynamic mount point for the target workspace resolved via wrapper scripts
- ${CORETEX_WORKSPACE_MOUNT:-./Workspace}:/workspace
extra_hosts:
- "host.docker.internal:host-gateway"
tty: true
stdin_open: true