forked from openstreetmap/openstreetmap-website
-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
55 lines (50 loc) · 935 Bytes
/
docker-compose.dev.yml
File metadata and controls
55 lines (50 loc) · 935 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
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
services:
web:
build:
context: .
environment:
PIDFILE: /tmp/pids/server.pid
volumes:
- .:/app
- /app/node_modules/
- web-tmp:/app/tmp
- web-storage:/app/storage
networks:
- web_network
tmpfs:
/tmp/pids/
ports:
- "3000:3000"
stdin_open: true
tty: true
command: ./start.sh
depends_on:
- db
- memcached
env_file:
- ohm-docker.dev.env
memcached:
image: memcached:latest
ports:
- '11211:11211'
networks:
- web_network
db:
image: ghcr.io/openhistoricalmap/db:0.0.1-0.dev.git.3101.ha4a4757
ports:
- "54321:5432"
env_file:
- ohm-docker.dev.env
volumes:
- db-data:/var/lib/postgresql/data
networks:
- web_network
volumes:
web-tmp:
web-storage:
db-data:
driver: local
name: ohm_web_pg17
networks:
web_network:
driver: bridge