-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
102 lines (95 loc) · 2.15 KB
/
docker-compose.yml
File metadata and controls
102 lines (95 loc) · 2.15 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
version: '3.8'
services:
# Development environment with all tools
dev:
build:
context: .
target: development
dockerfile: Dockerfile
container_name: teachlink-dev
volumes:
- .:/workspace
- cargo-cache:/usr/local/cargo/registry
- target-cache:/workspace/target
environment:
- RUST_BACKTRACE=1
- CARGO_TERM_COLOR=always
env_file:
- .env
working_dir: /workspace
command: /bin/bash
stdin_open: true
tty: true
networks:
- teachlink-network
# Builder service for creating optimized WASM
builder:
build:
context: .
target: builder
dockerfile: Dockerfile
container_name: teachlink-builder
volumes:
- .:/workspace
- cargo-cache:/usr/local/cargo/registry
working_dir: /workspace
command: cargo build --release --target wasm32-unknown-unknown
networks:
- teachlink-network
# Test runner service
test:
build:
context: .
target: development
dockerfile: Dockerfile
container_name: teachlink-test
volumes:
- .:/workspace
- cargo-cache:/usr/local/cargo/registry
- target-cache:/workspace/target
working_dir: /workspace
command: cargo test --all-features
networks:
- teachlink-network
# Linter/formatter service
lint:
build:
context: .
target: development
dockerfile: Dockerfile
container_name: teachlink-lint
volumes:
- .:/workspace
- cargo-cache:/usr/local/cargo/registry
working_dir: /workspace
command: sh -c "cargo fmt --all -- --check && cargo clippy --all-targets --all-features -- -D warnings"
networks:
- teachlink-network
volumes:
cargo-cache:
driver: local
target-cache:
driver: local
networks:
teachlink-network:
driver: bridge
# Usage instructions:
#
# Start development environment:
# docker-compose up dev
# docker-compose exec dev bash
#
# Build WASM:
# docker-compose run --rm builder
#
# Run tests:
# docker-compose run --rm test
#
# Run linter:
# docker-compose run --rm lint
#
# Build all services:
# docker-compose build
#
# Clean up:
# docker-compose down -v