-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
44 lines (40 loc) · 1.24 KB
/
docker-compose.yml
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
44
version: "3.9"
services:
devcontainer:
build:
context: .
target: dev
args:
PYTHON_VERSION: ${PYTHON_VERSION:-3.8}
UID: ${UID:-1000}
GID: ${GID:-1000}
environment:
- POETRY_PYPI_TOKEN_PYPI
volumes:
- ${WORKSPACE_SOURCE:-.}:${WORKSPACE_TARGET:-/workspaces/ksef/}
- command-history-volume:/home/user/.history/
dev:
extends: devcontainer
stdin_open: true
tty: true
entrypoint: []
command:
[
"sh",
"-c",
"sudo chown user $$SSH_AUTH_SOCK && cp --update /opt/build/poetry/poetry.lock /workspaces/ksef/ && mkdir -p /workspaces/ksef/.git/hooks/ && cp --update /opt/build/git/* /workspaces/ksef/.git/hooks/ && zsh"
]
environment:
- POETRY_PYPI_TOKEN_PYPI
- SSH_AUTH_SOCK=/run/host-services/ssh-auth.sock
volumes:
- ~/.gitconfig:/etc/gitconfig
- ~/.ssh/known_hosts:/home/user/.ssh/known_hosts
- ${SSH_AGENT_AUTH_SOCK:-/run/host-services/ssh-auth.sock}:/run/host-services/ssh-auth.sock
profiles:
- dev
volumes:
command-history-volume:
devcontainer-volume:
name: ${WORKSPACE_CONTAINER_VOLUME_SOURCE:-not-used-in-bind-mount-workspace}
external: ${WORKSPACE_IS_CONTAINER_VOLUME:-false}